Skip to content

Commit

Permalink
THEME-KIT #20 | fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
gorsutlame committed Mar 22, 2024
1 parent 0bcc3c1 commit 326aca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ntk/decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def _wrapper(self, *func_args, **func_kwargs):
result = response.json()
error_msg = " -> "
for key, value in result.items():
if type(value) == list:
if isinstance(value, list):
error_msg += f'"{key}" : {" ".join(value)}'
else:
error_msg += value
Expand Down

0 comments on commit 326aca3

Please sign in to comment.