Skip to content

Commit

Permalink
Fix spelling for cancellable_status_list
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsuta committed May 16, 2024
1 parent 767496b commit 61c4eb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion uber/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1586,7 +1586,7 @@ def _unrepr(d):

dealer_status_label_lookup = {val: key for key, val in c.DEALER_STATUS_OPTS}
c.DEALER_EDITABLE_STATUSES = [dealer_status_label_lookup[name] for name in c.DEALER_EDITABLE_STATUS_LIST]
c.DEALER_CANCELLABLE_STATUSES = [dealer_status_label_lookup[name] for name in c.DEALER_CANCELABLE_STATUS_LIST]
c.DEALER_CANCELLABLE_STATUSES = [dealer_status_label_lookup[name] for name in c.DEALER_CANCELLABLE_STATUS_LIST]


# A list of models that have properties defined for exporting for Guidebook
Expand Down
2 changes: 1 addition & 1 deletion uber/configspec.ini
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ group_reapply_attrs = string_list(default=list('name','zip_code','address1','add
dealer_editable_status_list = string_list(default=list("Pending Approval", "Waitlisted"))

# As above, but this controls whether dealer groups can cancel their own applications
dealer_cancelable_status_list = string_list(default=list("Pending Approval", "Waitlisted"))
dealer_cancellable_status_list = string_list(default=list("Pending Approval", "Waitlisted"))

# By default, staff/volunteers are only allowed to work shifts in a maximum of
# three different departments. Historically, we've found that working in too
Expand Down

0 comments on commit 61c4eb1

Please sign in to comment.