Skip to content

Commit

Permalink
Fix mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
tolik0 committed Oct 18, 2024
1 parent 0bb92c9 commit fcf691f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def __init__(self, cursor: Cursor, stream_slices: Iterable[Optional[Mapping[str,
self._read_state_from_cursor = read_state_from_cursor
self._current_slice: Optional[StreamSlice] = None
self._finished_sync = False
self._previous_state = None
self._previous_state: Optional[Mapping[str, Any]] = None

def next(self) -> Optional[Mapping[str, Any]]:
try:
Expand Down

0 comments on commit fcf691f

Please sign in to comment.