util: Remove redundant statements

This commit is contained in:
Tomas Babej 2015-04-02 20:59:29 +02:00
parent 80ab8f51a5
commit f2dd87769d

View file

@ -69,7 +69,6 @@ def tw_modstring_to_args(line):
def tw_modstring_to_kwargs(line):
output = dict()
escape_global_chars = ('"', "'")
line = line.strip()
args = tw_modstring_to_args(line)
@ -93,7 +92,6 @@ def tw_modstring_to_kwargs(line):
if arg == "-VISIBLE":
meta['visible'] = False
# Ignore tag removal
pass
return output, meta