Don't allow null as notes

This commit is contained in:
Matthias
2023-08-03 06:28:28 +02:00
parent 51879ffd2c
commit 36b84241b1

View File

@@ -531,7 +531,7 @@ class BacktestHistoryEntry(BaseModel):
class BacktestMetadataUpdate(BaseModel):
strategy: str
notes: Optional[str]
notes: str = ''
class SysInfo(BaseModel):