From 9cde3624920cb1ddd563b8addfcc65ccc79e080a Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Wed, 19 Feb 2025 20:35:50 -0500 Subject: Finish refactor --- main.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'main.py') diff --git a/main.py b/main.py index 67e7a35..816c721 100644 --- a/main.py +++ b/main.py @@ -1,9 +1,7 @@ -from .note_tools.commands import ( - NewNoteCommand, - NewNoteForTomorrowCommand -) +from .note_tools.today import NewNoteCommand +from .note_tools.tomorrow import NewNoteForTomorrowCommand -__all__= [ - "NewNoteCommand", - "NewNoteForTomorrowCommand" -] +__all__ = [ + 'NewNoteCommand', + 'NewNoteForTomorrowCommand' +] \ No newline at end of file -- cgit v1.1