Skip to content

Commit

Permalink
Fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
Fatal1ty committed Feb 15, 2020
1 parent 402577a commit 1da0b40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mashumaro/serializer/base/metaprogramming.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, cls):
self.cls = cls
self.lines = None # type: typing.Optional[typing.List[str]]
self.modules = None # type: typing.Optional[typing.Set[str]]
self.globals = None # type: typing.Set[str]
self.globals = None # type: typing.Optional[typing.Set[str]]
self._current_indent = None # type: typing.Optional[str]

def reset(self):
Expand Down

0 comments on commit 1da0b40

Please sign in to comment.