Skip to content

Commit 35b97ef

Browse files
committed
stop pylint recursion error in jhu
1 parent d2a5a23 commit 35b97ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jhu/delphi_jhu/pull.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def pull_jhu_data(base_url: str, metric: str, pop_df: pd.DataFrame) -> pd.DataFr
7575
pop_df.rename(columns={'FIPS':'fips'}, inplace=True)
7676
pop_df['fips'] = pop_df['fips'].astype(int).\
7777
astype(str).str.zfill(5)
78-
df = pd.merge(df, pop_df, on="fips", how='left')
78+
df = df.merge(pop_df, on="fips", how='left')
7979

8080
# Add a dummy first row here on day before first day
8181
# code below could be cleaned with groupby.diff

0 commit comments

Comments
 (0)