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):
|
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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue