Skip to content

Commit 0ae8f80

Browse files
committed
fix ruff
1 parent e62c427 commit 0ae8f80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/traffic/core/flight.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1732,8 +1732,8 @@ def resample(
17321732

17331733
if isinstance(how, str):
17341734
if how == "interpolate":
1735-
interpolable = data.dtypes[data.dtypes != object].index
1736-
other = data.dtypes[data.dtypes == object].index
1735+
interpolable = data.dtypes[data.dtypes != object].index # noqa: E721
1736+
other = data.dtypes[data.dtypes == object].index # noqa: E721
17371737
how = {how: set(interpolable) - {"timestamp"}}
17381738
how["ffill"] = set(other)
17391739
else:

0 commit comments

Comments
 (0)