Skip to content

Commit 18ae072

Browse files
alexcodakrivard
andauthored
Update quidel/delphi_quidel/pull.py
Co-authored-by: Katie Mazaitis <[email protected]>
1 parent 5f5b292 commit 18ae072

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quidel/delphi_quidel/pull.py

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

182182
mask = df["StorageDate"] - df["TestDate"] > pd.Timedelta(days=90)
183-
logger.info(f"Fixing {(np.sum(mask) * 100 / len(df)):.2f} of outdated data")
183+
logger.info(f"Fixing {(np.sum(mask) * 100 / len(df)):.2f}% of outdated data")
184184
df["timestamp"].values[mask] = df["StorageDate"].values[mask]
185185
return df
186186

0 commit comments

Comments
 (0)