We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd610de commit b450e4eCopy full SHA for b450e4e
singer/bookmarks.py
@@ -39,7 +39,7 @@ def from_dict(cls, data: Dict) -> "State":
39
)
40
41
def to_dict(self) -> Dict:
42
- state: Dict[str, Any] = {"bookmarks": self.bookmarks}
+ state = {"bookmarks": self.bookmarks} # type: Dict[str, Any]
43
if self.get_currently_syncing():
44
state["currently_syncing"] = self.get_currently_syncing()
45
return state
0 commit comments