Skip to content

Commit

Permalink
fix wrong paste into disconnected commands
Browse files Browse the repository at this point in the history
  • Loading branch information
sbillinge committed Feb 25, 2024
1 parent 004a3d5 commit a83add5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions regolith/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,13 +270,6 @@ def validate(rc):
sys.exit(f"Validation failed on some records")

DISCONNECTED_COMMANDS = {
"add": add_cmd,
"ingest": ingest,
"app": app,
"grade": grade,
"build": build,
"email": email,
"classlist": classlist,
"rc": lambda rc: print(rc._pformat()),
"deploy": deploy,
"store": storage.main,
Expand All @@ -285,6 +278,13 @@ def validate(rc):
}

CONNECTED_COMMANDS = {
"add": add_cmd,
"ingest": ingest,
"app": app,
"grade": grade,
"build": build,
"email": email,
"classlist": classlist,
"validate": validate,
"helper": helper,
"fs-to-mongo": fs_to_mongo,
Expand Down

0 comments on commit a83add5

Please sign in to comment.