Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mmacata committed Jun 20, 2024
1 parent 5d9829f commit 20e861c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/actinia_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#######

import importlib.metadata

try:
# Change here if project is renamed and does not equal the package name
dist_name = __name__
Expand Down
2 changes: 1 addition & 1 deletion src/actinia_core/core/interim_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def _compare_sha512sums_of_folders(self, folder1, folder2):
# get sha512sum of the folder
cur_working_dir = os.getcwd()
sha512sum_cmd = (
r"find . -type f -exec sha512sum {} \; | " + "sort -k 2 | sha512sum"
r"find . -type f -exec sha512sum {} \; |" + "sort -k 2 | sha512sum"
)
sha512sums = list()
for folder in [folder1, folder2]:
Expand Down

0 comments on commit 20e861c

Please sign in to comment.