Skip to content

Commit

Permalink
fix missing use
Browse files Browse the repository at this point in the history
  • Loading branch information
elsholz committed Jan 1, 2024
1 parent 91df98b commit 932373e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/code/metroplanner_api/type_definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,9 +304,9 @@ class PlanPrivateGetResponse(PlanProfile, PlanStats):


class PlanPrivatePatchRequest(ModelMayMissFields):
current_state: MaybeMissing[ObjectId] = Missing
plan_name: MaybeMissing[ShortText] = Missing
plan_description: MaybeMissing[LongText] = Missing
current_state: MaybeMissing(ObjectId) = Missing
plan_name: MaybeMissing(ShortText) = Missing
plan_description: MaybeMissing(LongText) = Missing
# TODO: Add color theme


Expand Down

0 comments on commit 932373e

Please sign in to comment.