Skip to content

Commit b450e4e

Browse files
committed
Make Python 3.5 compatible
1 parent cd610de commit b450e4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singer/bookmarks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def from_dict(cls, data: Dict) -> "State":
3939
)
4040

4141
def to_dict(self) -> Dict:
42-
state: Dict[str, Any] = {"bookmarks": self.bookmarks}
42+
state = {"bookmarks": self.bookmarks} # type: Dict[str, Any]
4343
if self.get_currently_syncing():
4444
state["currently_syncing"] = self.get_currently_syncing()
4545
return state

0 commit comments

Comments
 (0)