Add type hints

lethe/HEAD
Jan Petykiewicz 5 years ago
parent bc43be48bc
commit a44a7c176e

@ -15,11 +15,11 @@ __author__ = 'Jan Petykiewicz'
class Text(Shape):
_string = ''
_height = 1.0
_rotation = 0.0
_mirrored = None
font_path = ''
_string = '' # type: str
_height = 1.0 # type: float
_rotation = 0.0 # type: float
_mirrored = None # type: List[str]
font_path = '' # type: str
# vertices property
@property

Loading…
Cancel
Save