We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e62c427 commit 0ae8f80Copy full SHA for 0ae8f80
src/traffic/core/flight.py
@@ -1732,8 +1732,8 @@ def resample(
1732
1733
if isinstance(how, str):
1734
if how == "interpolate":
1735
- interpolable = data.dtypes[data.dtypes != object].index
1736
- other = data.dtypes[data.dtypes == object].index
+ interpolable = data.dtypes[data.dtypes != object].index # noqa: E721
+ other = data.dtypes[data.dtypes == object].index # noqa: E721
1737
how = {how: set(interpolable) - {"timestamp"}}
1738
how["ffill"] = set(other)
1739
else:
0 commit comments