mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 11:18:26 +02:00
9 lines
149 B
Python
9 lines
149 B
Python
import tkinter
|
|
from tkinter import ttk
|
|
|
|
|
|
class Window(tkinter.Toplevel):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
self.grab_set()
|