Skip to content

Commit

Permalink
Allow custom resolvers
Browse files Browse the repository at this point in the history
  • Loading branch information
acbart committed Mar 20, 2024
1 parent a131fd0 commit caf1ef8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pedal/command_line/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ def parse_args(reduced_mode=False):
' submissions are run. Mostly for testing'
' purposes.',
default=None)
parser.add_argument('--resolver', help='Choose a different resolver to use.',
default='resolve', choices=['resolve', 'stats_resolve'])
parser.add_argument('--resolver', help='Choose a different resolver to use (the name of a function defined in the instructor control script).',
default='resolve')
parser.add_argument('--ics_direct', help="Give the instructor code directly"
" instead of loading from a file.",
default=False, action='store_true')
Expand Down

0 comments on commit caf1ef8

Please sign in to comment.