bug: NoneValue for ConfigModel.puzzle.next

This commit is contained in:
Jörn-Michael Miehe 2023-09-16 00:16:18 +00:00
parent bf2fa124e7
commit c55bef46dd
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ class ConfigModel(BaseModel):
class __Puzzle(BaseModel): class __Puzzle(BaseModel):
solution: str solution: str
first: date first: date
next: date next: date | None
last: date last: date
end: date end: date
seed: str seed: str

View file

@ -2,7 +2,7 @@ export interface ConfigModel {
puzzle: { puzzle: {
solution: string; solution: string;
first: string; first: string;
next: string; next: string | null;
last: string; last: string;
end: string; end: string;
seed: string; seed: string;