Skip to content

Commit 80bb904

Browse files
committed
lint: make happy
1 parent a1c2f61 commit 80bb904

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nssp/delphi_nssp/run.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def add_needed_columns(df, col_names=None):
4545
df = add_default_nancodes(df)
4646
return df
4747

48+
4849
def logging(start_time, run_stats, logger):
4950
"""Boilerplate making logs."""
5051
elapsed_time_in_seconds = round(time.time() - start_time, 2)
@@ -140,7 +141,7 @@ def run_module(params, logger=None):
140141
elif geo == "hsanci":
141142
df = df[["hsa_nci_id", "val", "timestamp"]]
142143
df = df[df["hsa_nci_id"] != "All"]
143-
df = df.groupby(["hsa_nci_id", "timestamp"])['val'].min().reset_index()
144+
df = df.groupby(["hsa_nci_id", "timestamp"])["val"].min().reset_index()
144145
df = df.rename(columns={"hsa_nci_id": "geo_id"})
145146
else:
146147
df = df[df["county"] != "All"]

0 commit comments

Comments
 (0)