Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyjonbrazil committed Dec 16, 2021
1 parent a425ffb commit 5346f4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jello/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def main(data=None, query='_'):
# only process if there is data
if data and not data.isspace():

# load the JSON or JSON Lines
# load the JSON or JSON Lines into a dict or list of dicts
try:
data = load_json(data)
except Exception as e:
Expand Down Expand Up @@ -205,7 +205,7 @@ def main(data=None, query='_'):
print(output)

except Exception as e:
print_exception(e, data, query, response, ex_type='Formatting')
print_exception(e, data, query, response, ex_type='Output')


if __name__ == '__main__':
Expand Down

0 comments on commit 5346f4e

Please sign in to comment.