Add type hints

This commit is contained in:
Jan Petykiewicz 2019-05-15 00:14:35 -07:00
parent bc43be48bc
commit a44a7c176e

View File

@ -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