Skip to content

Commit

Permalink
dropna subset list
Browse files Browse the repository at this point in the history
the 3.6 CI run wasn't liking the scalar
  • Loading branch information
zmoon committed Oct 27, 2023
1 parent 582da1a commit bdde46c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monetio/obs/aqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ def add_data2(self, df, daily=False, network=None):
}
)
if network is not None:
self.df = self.df.dropna(subset="networks")
self.df = self.df.dropna(subset=["networks"])
# if daily:
# self.df["time"] = self.df.time_local - pd.to_timedelta(self.df.gmt_offset, unit="H")
if pd.Series(self.df.columns).isin(["parameter_name"]).max():
Expand Down

0 comments on commit bdde46c

Please sign in to comment.