1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-19 00:17:51 +02:00

fix found variable error

This commit is contained in:
Kelly Brazil
2019-11-07 08:23:11 -08:00
parent a90a76d004
commit 5da83e0200

View File

@ -118,6 +118,8 @@ def main():
'--w': jc.parsers.w.parse
}
found = False
for arg in sys.argv:
if arg in list(parser_map.keys()):
result = parser_map[arg](data, raw=raw, quiet=quiet)