Learn how pop works

This commit is contained in:
Jake Howard 2016-11-07 20:57:42 +00:00
parent 49e75ded04
commit 94950857de

View File

@ -8,9 +8,8 @@ ARGS = sys.argv[1:]
if not os.isatty(0):
data = sys.stdin.read()
else:
with open(ARGS[0]) as f:
with open(ARGS.pop(0)) as f:
data = '\n'.join(f.readlines())
ARGS.pop(0)
parsed_data = json.dumps(json.loads(data), indent=2, sort_keys=True)