Skip to content

Commit

Permalink
fix: made reward_types non-optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Mettwasser authored and TobiTenno committed Jun 12, 2023
1 parent 68b0f88 commit e803f01
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions warframe/worldstate/models/invasion.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,8 @@ class Invasion(MultiQueryModel):
defender: Defender
"The defending faction information"

start_string: Optional[str] = None
start_string: str
"Short-time-formatted duration string of the start of the Invasion"

# optional
reward_types: Optional[List[ItemRewardType]] = None
reward_types: List[ItemRewardType]
"A list of reward types"

0 comments on commit e803f01

Please sign in to comment.