diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2025-02-19 20:35:50 -0500 |
---|---|---|
committer | Zach Berwaldt <zberwaldt@tutamail.com> | 2025-02-19 20:35:50 -0500 |
commit | 9cde3624920cb1ddd563b8addfcc65ccc79e080a (patch) | |
tree | 999bf10c56eec617af3c6eade7c0602878ae2be6 /main.py | |
parent | c6eb143b51b0c105b157e9d408d6e9fcfaa5abfc (diff) |
Finish refactor
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -1,9 +1,7 @@ | |||
1 | from .note_tools.commands import ( | 1 | from .note_tools.today import NewNoteCommand |
2 | NewNoteCommand, | 2 | from .note_tools.tomorrow import NewNoteForTomorrowCommand |
3 | NewNoteForTomorrowCommand | ||
4 | ) | ||
5 | 3 | ||
6 | __all__= [ | 4 | __all__ = [ |
7 | "NewNoteCommand", | 5 | 'NewNoteCommand', |
8 | "NewNoteForTomorrowCommand" | 6 | 'NewNoteForTomorrowCommand' |
9 | ] | 7 | ] \ No newline at end of file |