refactor: move stuff to working/

This commit is contained in:
Dobin
2024-03-01 19:04:05 +00:00
parent 6175875ea1
commit 115c654429
10 changed files with 16 additions and 11 deletions
+2 -2
View File
@@ -90,12 +90,12 @@ def project():
id = 0
asm_a = "" # for diff
asm_b = ""
for file in os.listdir("logs"):
for file in os.listdir(f"{logs_dir}/"):
if file.startswith("."):
continue
print("Handle: ", file)
with open(os.path.join("logs", file), "r") as f:
with open(os.path.join(f"{logs_dir}/", file), "r") as f:
if file.endswith(".bin"):
continue
data = f.read()