feat(debugging): provide a way to export the drawn graph as a png file

This commit is contained in:
Umut
2021-08-18 16:28:31 +03:00
parent 0c5d5b0fd0
commit 94fef5e202
9 changed files with 178 additions and 169 deletions

View File

@@ -15,6 +15,7 @@ def main():
with open(notebook_file, "w", newline="\n") as f:
json.dump(notebook_dict, f, indent=1, ensure_ascii=False)
f.write("\n")
if __name__ == "__main__":