korreckturen throughout code

This commit is contained in:
2025-04-26 00:28:34 +02:00
parent f6204c9071
commit 1a853d4ff1
6 changed files with 255 additions and 222 deletions

View File

@ -21,14 +21,14 @@ Create.dir_and_files()
Create.make_dir()
Create.decrypt()
tcl_path = Path("/usr/share/TK-Themes")
set_file = Path(Path.home() / ".config/wire_py/settings")
tcl_path: Path = Path("/usr/share/TK-Themes")
set_file: Path = Path(Path.home() / ".config/wire_py/settings")
tips = LxTools.if_tip(set_file)
dirname = Path("/tmp/tlecdcwg/")
userfile = Path("/tmp/.loguser")
folder_path: Path = Path("/tmp/tlecdcwg/")
userfile = Path("/tmp/.log_user")
# 1 = 1. Year, 09 = Month of the Year, 2924 = Day and Year of the Year
VERSION = "v. 2.04.1725"
VERSION: str = "v. 2.04.1725"
res = GiteaUpdate.api_down("https://git.ilunix.de/api/v1/repos/punix/Wire-Py/releases", VERSION, set_file)
@ -40,7 +40,7 @@ gettext.bindtextdomain(APP, LOCALE_DIR)
gettext.textdomain(APP)
_ = gettext.gettext
LxTools.sigi(dirname, userfile)
LxTools.sigi(folder_path, userfile)
class Wirepy(tk.Tk):
@ -917,5 +917,5 @@ if __name__ == "__main__":
window.tk.call("set", "::tk::dialog::file::showHiddenVar", "0")
window.mainloop()
LxTools.clean_files(dirname, userfile)
LxTools.clean_files(folder_path, userfile)
sys.exit(0)