Skip to content

Commit

Permalink
apply new black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed Feb 18, 2024
1 parent 97821e9 commit fcb02fa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion pypiper/const.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
""" Pypiper constants. """


CHECKPOINT_EXTENSION = ".checkpoint"
DEFAULT_SAMPLE_NAME = "DEFAULT_SAMPLE_NAME"
PIPELINE_CHECKPOINT_DELIMITER = "_"
Expand Down
3 changes: 1 addition & 2 deletions pypiper/ngstk.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,7 @@ def get_file_size(self, filenames):
return sum([self.get_file_size(filename) for filename in filenames])

return round(
sum([float(os.stat(f).st_size) for f in filenames.split(" ")])
/ (1024**2),
sum([float(os.stat(f).st_size) for f in filenames.split(" ")]) / (1024**2),
4,
)

Expand Down

0 comments on commit fcb02fa

Please sign in to comment.