Create a custom font with the specified size. Args: size (int): The font size. Returns: Font: The custom Font object.
(size)
| 96 | |
| 97 | @staticmethod |
| 98 | def custom_font(size): |
| 99 | """ |
| 100 | Create a custom font with the specified size. |
| 101 | |
| 102 | Args: |
| 103 | size (int): The font size. |
| 104 | |
| 105 | Returns: |
| 106 | Font: The custom Font object. |
| 107 | """ |
| 108 | return Font(size=size) |
| 109 | |
| 110 | def file_input(self): |
| 111 | """ |