Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 2, 2024
1 parent 29b4f36 commit b27307a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vista2d/download_preprocessor/generate_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ def main():
try:
if os.path.exists(in_path):
print(f"File exists at: {in_path}")
except Exception as err:
except Exception:
print(f"File: {in_path} was not found")
out_path = os.path.join(dataset_path)
extract_zip(in_path, out_path)
Expand Down
2 changes: 1 addition & 1 deletion vista2d/download_preprocessor/process_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ def main():
try:
if os.path.exists(in_path):
print(f"File exists at: {in_path}")
except Exception as err:
except Exception:
print(f"File: {in_path} was not found")
out_path = os.path.join(dataset_path)
extract_zip(in_path, out_path)
Expand Down

0 comments on commit b27307a

Please sign in to comment.