Skip to content

Commit 8b0d45e

Browse files
committed
black
1 parent 11149e4 commit 8b0d45e

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

relecov_tools/assets/pipeline_utils/create_summary_tables.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def process_json_files(
110110
season = get_epi_season(sample["sample_collection_date"])
111111
if specified_week and week != specified_week:
112112
continue
113-
113+
114114
if specified_season and season != specified_season:
115115
continue
116116

@@ -365,8 +365,7 @@ def process_json_files(
365365
df_variants_existing = pd.read_csv(variant_csv_path, dtype=str)
366366

367367
df_variants = pd.concat(
368-
[df_variants_existing, df_variants_new],
369-
ignore_index=True
368+
[df_variants_existing, df_variants_new], ignore_index=True
370369
)
371370
else:
372371
df_variants = df_variants_new
@@ -464,7 +463,7 @@ def process_json_files(
464463
"-s",
465464
"--season",
466465
help="Filter for specific epidemiological season (format: YYYY_YYYY)",
467-
)
466+
)
468467
parser.add_argument(
469468
"-c",
470469
"--copy-fasta",

0 commit comments

Comments
 (0)