nevermind

This commit is contained in:
lol 2024-06-04 15:18:41 +01:00
parent 22c7bce0dd
commit 6cc9b02069

View File

@ -66,12 +66,12 @@ def save_file(json:list[dict], filename:str) -> None:
raise IndexError("Error saving file") from exc raise IndexError("Error saving file") from exc
def main(): def main():
# file = get_file(10) file = get_file(10)
# DEBUG: local test file # DEBUG: local test file
file = local_file("test.csv") #file = local_file("test.csv")
# Save file # Save file
save_file(file, "out.json") save_file(file, "out.json")
if __name__ == "__main__": if __name__ == "__main__":
main() main()