Skip to content

Commit

Permalink
Fixing all flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinav-nain committed Jul 4, 2024
1 parent 8a7c549 commit 3fdda37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/tests/test_artifact_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ def test_artifact_loads_valid_json(self):


if __name__ == "__main__":
unittest.main()
unittest.main()
2 changes: 1 addition & 1 deletion lib/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def all_id_lists(vrt, include_internal=True):
def _all_id_lists(sub_vrt, prefix):
if isinstance(sub_vrt, list):
return [
vrt_id for entry in sub_vrt
vrt_id for entry in sub_vrt
for vrt_id in _all_id_lists(entry, prefix)
]
elif isinstance(sub_vrt, dict):
Expand Down

0 comments on commit 3fdda37

Please sign in to comment.