diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2024-06-15 11:03:30 -0400 |
---|---|---|
committer | Zach Berwaldt <zberwaldt@tutamail.com> | 2024-06-15 11:03:30 -0400 |
commit | 38bb828fc32d9a1c61b20bcdc576c6d8566717d2 (patch) | |
tree | 43448e2afa1cb5fb60a7c6d41b86b2476d80dad2 | |
parent | 6a80f48b1c3c0245bbf78bcd8ebf52e4ca2cbc0a (diff) |
rename notes module to note_tools
-rw-r--r-- | main.py | 4 | ||||
-rw-r--r-- | note_tools/__init__.py (renamed from notes/__init__.py) | 0 | ||||
-rw-r--r-- | note_tools/commands.py (renamed from notes/commands.py) | 0 |
3 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | from .notes.commands import ( | 1 | from .note_tools.commands import ( |
2 | OrganizeNotesCommand, | 2 | OrganizeNotesCommand, |
3 | NewNoteCommand | 3 | NewNoteCommand |
4 | ) | 4 | ) |
@@ -9,4 +9,4 @@ __all__= [ | |||
9 | ] | 9 | ] |
10 | 10 | ||
11 | def plugin_loaded(): | 11 | def plugin_loaded(): |
12 | print("NOTES HAS BEEN LOADED") \ No newline at end of file | 12 | print("Note tools have been loaded.") \ No newline at end of file |
diff --git a/notes/__init__.py b/note_tools/__init__.py index e69de29..e69de29 100644 --- a/notes/__init__.py +++ b/note_tools/__init__.py | |||
diff --git a/notes/commands.py b/note_tools/commands.py index 2a89a32..2a89a32 100644 --- a/notes/commands.py +++ b/note_tools/commands.py | |||