(self, *args, **kwargs)
| 380 | |
| 381 | class Main(tk.Tk): |
| 382 | def __init__(self, *args, **kwargs): |
| 383 | super().__init__(*args, **kwargs) |
| 384 | # ----- Title ----- |
| 385 | self.title("Calculator") |
| 386 | # ----------------- |
| 387 | # ----- Geometry Settings ----- |
| 388 | self.geometry_settings() |
| 389 | # ----------------------------- |
| 390 | |
| 391 | def geometry_settings(self): |
| 392 | _com_width = self.winfo_screenwidth() |
nothing calls this directly
no test coverage detected