We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ddbd0b commit 708b9e6Copy full SHA for 708b9e6
2 files changed
simvue/config/parameters.py
@@ -23,7 +23,8 @@
23
24
class ServerSpecifications(pydantic.BaseModel):
25
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(
26
- extra="forbid", strict=True
+ extra="forbid",
27
+ strict=True,
28
)
29
url: pydantic.AnyHttpUrl | None
30
token: pydantic.SecretStr | None
simvue/config/user.py
@@ -49,7 +49,10 @@
49
class SimvueConfiguration(pydantic.BaseModel):
50
# Hide values as they contain token and URL
51
model_config = pydantic.ConfigDict(
52
- hide_input_in_errors=True, revalidate_instances="always"
+ hide_input_in_errors=True,
53
+ revalidate_instances="always",
54
55
56
57
client: ClientGeneralOptions = ClientGeneralOptions()
58
server: ServerSpecifications = pydantic.Field(
0 commit comments