We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4770e24 commit fc86b66Copy full SHA for fc86b66
sourcehold/tool/convert/aiv/__init__.py
@@ -22,7 +22,6 @@ def convert_aiv(args):
22
inp_format = 'aiv'
23
elif inp.endswith(".json"):
24
inp_format = "json"
25
- inp_invert_y = True
26
else:
27
inp_format_tokens = inp_format.split(",")
28
if 'inverty' in inp_format_tokens:
@@ -34,7 +33,6 @@ def convert_aiv(args):
34
33
if not out_format:
35
if inp_format == "aiv":
36
out_format = "json"
37
- out_invert_y = True
38
elif inp_format == "json":
39
out_format = "aiv"
40
0 commit comments