Skip to content

Commit

Permalink
Fix operand error.
Browse files Browse the repository at this point in the history
  • Loading branch information
TJohnsonAZ committed Jul 18, 2024
1 parent 70e1d3e commit 84babd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion epymorph/geo/adrio/cdc/adrio_cdc.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ def _query_location(self, info: QueryInfo, loc_clause: str, date_clause: str) ->
'$offset': total_returned
})

df = concat([df, + read_csv(url, dtype={info.fips_col: str})])
df = concat([df, read_csv(url, dtype={info.fips_col: str})])

current_return = len(df.index) - total_returned
total_returned += current_return
Expand Down

0 comments on commit 84babd7

Please sign in to comment.