Skip to content

Commit

Permalink
fix: avoid strip on none key
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmet2mir committed Feb 11, 2022
1 parent 652a262 commit 2df179e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wildq/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def cli(*args, **kwargs):

for line in compiled:
if not isinstance(line, dict) and not isinstance(line, list):
if raw:
if raw and not line is None:
print(line.strip('"'))
else:
print(line)
Expand Down

0 comments on commit 2df179e

Please sign in to comment.