Skip to content

Commit 20d3ca3

Browse files
committed
Using 2 keyword arguments for set_options
1 parent ba1a334 commit 20d3ca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msticpy/analysis/anomalous_sequence/sessionize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# mypy: ignore-errors
2121
_PD_VERSION = Version(pd.__version__)
2222
if Version("2.2.0") <= _PD_VERSION:
23-
pd.set_option("future.no_silent_downcasting", val=True)
23+
pd.set_option(pat="future.no_silent_downcasting", val=True)
2424

2525

2626
def sessionize_data( # noqa: PLR0913

0 commit comments

Comments
 (0)