diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2025-02-20 12:40:49 -0500 |
---|---|---|
committer | Zach Berwaldt <zberwaldt@tutamail.com> | 2025-02-20 12:40:49 -0500 |
commit | 8978a195055844e22ef9ad736f1494c82a5fc235 (patch) | |
tree | db033ca0f5e414faf9e3c1a7835c438f35a52780 /main.py | |
parent | 116c309b2efc394123f2cc67625effc3b2426a22 (diff) | |
parent | 590e84a29672f5ecf458d53aa1d4ca587f7c47a6 (diff) |
Merge branch 'develop'
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 14 |
1 files changed, 5 insertions, 9 deletions
@@ -1,11 +1,7 @@ | |||
1 | from .note_tools.commands import ( | 1 | from .note_tools.today import NewNoteCommand |
2 | OrganizeNotesCommand, | 2 | from .note_tools.tomorrow import NewNoteForTomorrowCommand |
3 | NewNoteCommand | ||
4 | ) | ||
5 | 3 | ||
6 | __all__= [ | 4 | __all__ = [ |
7 | "NewNoteCommand" | 5 | 'NewNoteCommand', |
6 | 'NewNoteForTomorrowCommand' | ||
8 | ] | 7 | ] |
9 | |||
10 | def plugin_loaded(): | ||
11 | print("Note tools have been loaded.") | ||