diff --git a/accountant/run.py b/accountant/run.py index d1a4205..b069fc8 100644 --- a/accountant/run.py +++ b/accountant/run.py @@ -18,12 +18,12 @@ app = create_app(config_path) # pylint: disable=invalid-name # Define commands to handle users. @app.cli.group() -def user(): +def users(): """ User management. """ pass -@user.command() +@users.command() def add(email, password): """ Add a new user. """ user = User()