MCPcopy Create free account
hub / github.com/geekcomputers/Python / __init__

Method __init__

calculator-gui.py:382–389  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

380
381class 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()

Callers

nothing calls this directly

Calls 1

geometry_settingsMethod · 0.95

Tested by

no test coverage detected