Skip to content

Commit

Permalink
Fix deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mesca committed Oct 23, 2022
1 parent f427aa7 commit 0a1012e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion timeflux/nodes/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def update(self):
return

# Sanity check
if not self.i.data.index.is_monotonic:
if not self.i.data.index.is_monotonic_increasing:
self.logger.warning("Indices are non-monotonic.")

# Append new data
Expand Down

0 comments on commit 0a1012e

Please sign in to comment.