Skip to content

Commit fcb02fa

Browse files
committed
apply new black formatting
1 parent 97821e9 commit fcb02fa

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

pypiper/const.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
""" Pypiper constants. """
22

3-
43
CHECKPOINT_EXTENSION = ".checkpoint"
54
DEFAULT_SAMPLE_NAME = "DEFAULT_SAMPLE_NAME"
65
PIPELINE_CHECKPOINT_DELIMITER = "_"

pypiper/ngstk.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ def get_file_size(self, filenames):
153153
return sum([self.get_file_size(filename) for filename in filenames])
154154

155155
return round(
156-
sum([float(os.stat(f).st_size) for f in filenames.split(" ")])
157-
/ (1024**2),
156+
sum([float(os.stat(f).st_size) for f in filenames.split(" ")]) / (1024**2),
158157
4,
159158
)
160159

0 commit comments

Comments
 (0)