fix _set_modifier typing
This commit is contained in:
parent
dfdde884b8
commit
4298403164
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ class SpecArgumentType(object):
|
||||||
self._set_modifier(modifier)
|
self._set_modifier(modifier)
|
||||||
self.exported = exported
|
self.exported = exported
|
||||||
|
|
||||||
def _set_modifier(self, modifier: str):
|
def _set_modifier(self, modifier: typing.Optional[str]):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def name(self) -> typing.Optional[str]:
|
def name(self) -> typing.Optional[str]:
|
||||||
|
|
Loading…
Reference in a new issue