mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-22 15:53:01 +00:00
bug: NoneValue for ConfigModel.puzzle.next
This commit is contained in:
parent
bf2fa124e7
commit
c55bef46dd
2 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ class ConfigModel(BaseModel):
|
|||
class __Puzzle(BaseModel):
|
||||
solution: str
|
||||
first: date
|
||||
next: date
|
||||
next: date | None
|
||||
last: date
|
||||
end: date
|
||||
seed: str
|
||||
|
|
|
@ -2,7 +2,7 @@ export interface ConfigModel {
|
|||
puzzle: {
|
||||
solution: string;
|
||||
first: string;
|
||||
next: string;
|
||||
next: string | null;
|
||||
last: string;
|
||||
end: string;
|
||||
seed: string;
|
||||
|
|
Loading…
Reference in a new issue