1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2026-04-24 20:56:11 +02:00

clean up final return

This commit is contained in:
Kelly Brazil
2023-10-23 17:37:53 -07:00
parent 264fcd40ad
commit b0cf2e2d78
+1 -4
View File
@@ -303,7 +303,4 @@ def parse(data, raw=False, quiet=False):
raw_output.append(output_line)
if raw:
return raw_output
else:
return _process(raw_output)
return raw_output if raw else _process(raw_output)