This repository has been archived by the owner on Jun 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rename modules (I hope this is the last time)
- Loading branch information
Showing
3 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import evonote, json | ||
from evonote.gui.notetree import get_json_for_treemap | ||
from evonote.transform.module_to_notetree import get_notetree_for_module | ||
notetree = get_notetree_for_module(evonote) | ||
tree = get_json_for_treemap(notetree.root) | ||
from evonote.gui.mindtree import get_json_for_treemap | ||
from evonote.transform.module_to_tree import get_tree_for_module | ||
tree = get_tree_for_module(evonote) | ||
tree_in_dict = get_json_for_treemap(tree.root) | ||
f = open('output/project_tree.json', 'w');json.dump(tree, f) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters