config.py: changed " to '

This commit is contained in:
Kirill Zhukov 2022-12-29 17:17:48 +01:00
parent 6a5f0471fe
commit 3aee91a84f
1 changed files with 2 additions and 2 deletions

View File

@ -54,10 +54,10 @@ class Config(BaseModel):
description='list of Security Advisory IDs (ALSA-2022:5219) to exclude from checking',
default=SA_EXCLUDE)
server_port: int = Field(
description="port that will be used by websever",
description='port that will be used by websever',
default=SERVER_PORT)
server_ip: IPv4Address = Field(
description="IP that will be used by webserver",
description='IP that will be used by webserver',
default=SERVER_IP)
not_before: datetime = Field(
description='date to start checking from (YYYY-mm-dd)',