Skip to content

Commit

Permalink
autopep8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
theory-in-progress authored and github-actions[bot] committed Oct 24, 2023
1 parent 47b95d0 commit 68badeb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/test_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ def check_package(package_name, expected_version=None):
if expected_version is not None:
assert hasattr(mod, "__version__"), f"Imported package {package_name} does not have __version__ attribute"
version = mod.__version__
assert version == expected_version, f"Version mismatch for package {package_name}: got {version} but expected {expected_version}"
assert (
version == expected_version
), f"Version mismatch for package {package_name}: got {version} but expected {expected_version}"


if __name__ == "__main__":
Expand Down

0 comments on commit 68badeb

Please sign in to comment.