Skip to content

Commit 477d0d7

Browse files
committed
fix linting
1 parent e8255ff commit 477d0d7

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

relecov_tools/read_lab_metadata.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,11 @@ def __init__(
5555
)
5656
self.files_folder = os.path.abspath(files_folder)
5757

58-
if sample_list_file is not None and not os.path.exists(
59-
sample_list_file
60-
):
58+
if sample_list_file is not None and not os.path.exists(sample_list_file):
6159
self.log.error(
6260
"Sample information file %s does not exist ", sample_list_file
6361
)
64-
stderr.print(
65-
"[red] Samples file " + sample_list_file + " does not exist"
66-
)
62+
stderr.print("[red] Samples file " + sample_list_file + " does not exist")
6763
raise FileNotFoundError(
6864
"Sample information file %s does not exist ", sample_list_file
6965
)

0 commit comments

Comments
 (0)