Skip to content

Commit

Permalink
commands.edit - add rename command
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoCampinoti94 committed Nov 22, 2024
1 parent 3d2e810 commit eee797d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions digiarch/commands/edit/edit.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from .processed import cmd_processed_original
from .remove import cmd_remove_master
from .remove import cmd_remove_original
from .rename import cmd_rename_original


@group("edit", no_args_is_help=True, short_help="Edit the database.")
Expand Down Expand Up @@ -57,6 +58,7 @@ def grp_edit_master():
# noinspection DuplicatedCode
grp_edit_original.add_command(cmd_processed_original, cmd_processed_original.name)
grp_edit_original.add_command(cmd_lock_original, cmd_lock_original.name)
grp_edit_original.add_command(cmd_rename_original, cmd_rename_original.name)
grp_edit_original.add_command(cmd_remove_original, cmd_remove_original.name)

grp_edit_master.add_command(cmd_processed_master, cmd_processed_master.name)
Expand Down

0 comments on commit eee797d

Please sign in to comment.