working version. something wrong with icons

This commit is contained in:
2025-10-16 14:24:49 +03:00
parent 414cb4d38e
commit add2e15d5f
12 changed files with 371 additions and 104 deletions
+9
View File
@@ -0,0 +1,9 @@
def save_to_file(
thing: str | dict,
path: str,
):
if isinstance(thing, dict):
pass
elif isinstance(thing, str):
with open(path, "w") as outputfile:
outputfile.write(thing)