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):
solution: str
first: date
next: date
next: date | None
last: date
end: date
seed: str

View file

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