diff --git a/LICENSE b/LICENSE index 0212030..0e5318f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 rdbende +Copyright (c) 2021-2022 rdbende Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index e7b4fa9..d3b3eca 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ pip install sv-ttk ### Usage -For detailed documentation, see the [wiki page](https://github.com/rdbende/Sun-Valley-ttk-theme/wiki/sv_ttk-docs) +For detailed documentation, see the [wiki page](https://github.com/rdbende/Sun-Valley-ttk-theme/wiki/Usage-with-Python) ```python import tkinter @@ -20,12 +20,12 @@ from tkinter import ttk import sv_ttk -root = tk.Tk() +root = tkinter.Tk() button = ttk.Button(root, text="Click me!") button.pack() -# This where the magic happens +# This is where the magic happens sv_ttk.set_theme("dark") root.mainloop()