Skip to content

Commit b6361de

Browse files
alexcodakrivard
andauthored
Update quidel_covidtest/delphi_quidel_covidtest/pull.py
Co-authored-by: Katie Mazaitis <[email protected]>
1 parent 1aa181c commit b6361de

File tree

1 file changed

+1
-1
lines changed
  • quidel_covidtest/delphi_quidel_covidtest

1 file changed

+1
-1
lines changed

quidel_covidtest/delphi_quidel_covidtest/pull.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def fix_date(df, logger):
103103
df = df[mask]
104104

105105
mask = df["StorageDate"] - df["TestDate"] > pd.Timedelta(days=90)
106-
logger.info(f"Fixing {(np.sum(mask) * 100 / len(df)):.2f} of outdated data")
106+
logger.info(f"Fixing {(np.sum(mask) * 100 / len(df)):.2f}% of outdated data")
107107
df["timestamp"].values[mask] = df["StorageDate"].values[mask]
108108
return df
109109

0 commit comments

Comments
 (0)