Skip to content

Commit 36ff97b

Browse files
authored
Change DeprecationWarning to FutureWarning so it isn't filtered (#535)
change DeprecationWarning to FutureWarning
1 parent e52f475 commit 36ff97b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quixstreams/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ def run(self, dataframe: Optional[StreamingDataFrame] = None):
683683
"Application.run() received a `dataframe` argument which is "
684684
"no longer used (StreamingDataFrames are now tracked automatically); "
685685
"the argument should be removed.",
686-
DeprecationWarning,
686+
FutureWarning,
687687
)
688688
self._run()
689689

0 commit comments

Comments
 (0)