Skip to content

Commit a44712f

Browse files
committed
remove gn
1 parent ad534d3 commit a44712f

File tree

5 files changed

+2
-10
lines changed

5 files changed

+2
-10
lines changed

dev_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [ "$OS" = "Darwin" ]; then
2828

2929
# Clean up
3030
echo "Cleaning up..."
31-
rm -r __init__.dist __init__.build __init__.onefile-build
31+
rm -r __init__.dist __init__.build __init__.onefile-build fob
3232

3333
echo "Installation complete. The 'fob' command is now available. If not, please check that $DEST_PATH is in your PATH environment variable."
3434
else

src/fob/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ def run_app():
5252
subparsers.add_parser(
5353
"gm", help="Start a new day by selecting the blocks you will work on today"
5454
)
55-
subparsers.add_parser("gn", help="Say good night")
5655
subparsers.add_parser("reset", help="Reset fob by deleting persistent database file.")
5756
subparsers.add_parser("sup", help="Quick look at the month and today's blocks")
5857

src/fob/commands/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from fob.commands.help import help
22
from fob.commands.gm import gm
3-
from fob.commands.gn import gn
43
from fob.commands.sup import sup
54
from fob.commands.new_month import new_month
65
from fob.commands.reset import reset

src/fob/commands/gn.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/fob/commands/help.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ def help(args: Namespace | None, db: TinyDBWrapper | None) -> None:
1414
[cyan bold]new_month[/cyan bold] Allocate blocks for a new month
1515
[cyan bold]gm[/cyan bold] Start a new day by selecting the blocks you will work on today.
1616
[cyan bold]sup[/cyan bold] Quick look at the month and today's blocks
17-
[cyan bold]gn[/cyan bold] Say good night
1817
[cyan bold]reset[/cyan bold] Delete persistent database file.
1918
2019
[green bold]Global Options:[/green bold]
21-
[cyan bold]-d, --database[/cyan bold] [magenta not bold]<PATH_TO_DB_FILE>[/magenta not bold] Path to database file.
20+
[cyan bold]-d, --database[/cyan bold] [magenta not bold]<PATH_TO_DB_FILE>[/magenta not bold] Path to database file. You can use a cloud storage (eg. Dropbox) to sync the database across devices.
2221
[cyan bold]-x, --debug[/cyan bold] Enable debug mode.
2322
""")

0 commit comments

Comments
 (0)