mirror of
https://github.com/aljazceru/Image-Quote-Generator.git
synced 2025-12-20 07:24:24 +01:00
10 lines
273 B
Python
10 lines
273 B
Python
class Fonts:
|
|
fonts_path: str
|
|
fonts_size: int
|
|
fonts_chars_limit: int
|
|
|
|
def __init__(self, fonts_path, fonts_size, fonts_chars_limit):
|
|
self.fonts_path = fonts_path
|
|
self.fonts_size = fonts_size
|
|
self.fonts_chars_limit = fonts_chars_limit
|