Skip to content

Commit ff4d3e2

Browse files
committed
Replace the use of super()
1 parent bb2bd2a commit ff4d3e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quixstreams/state/rocksdb/timestamped.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def set_for_timestamp(
155155
:param retention_ms: retention for the key in milliseconds
156156
"""
157157
prefix = self._ensure_bytes(prefix)
158-
super().set(timestamp, value, prefix)
158+
self.set(timestamp, value, prefix)
159159
min_eligible_timestamp = max(
160160
self._get_min_eligible_timestamp(prefix),
161161
timestamp - retention_ms,

0 commit comments

Comments
 (0)