Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2024-01-18 16:01:45 +01:00 committed by GitHub
parent 4bd4fff111
commit 9c0cc4b441
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -299,12 +299,12 @@ root = tk.Tk()
width_element: int = 10
my_frame = ttk.Label(
my_object = ttk.Label(
root,
width=width_element,
text="A label thing",
)
my_frame.grid(row=0, column=0, sticky="w")
my_object.grid(row=0, column=0, sticky="w")
root.mainloop()