Compare commits

...

1 Commits

Author SHA1 Message Date
Jonathon Broughton 89280acf53 Update fixtures.py
Minor upgrade of ruff breaks without this fix
2025-02-10 14:57:26 +00:00
+4 -4
View File
@@ -22,10 +22,10 @@ class TestAutomationEnvironment(BaseSettings):
extra="ignore",
)
token: str = Field()
server_url: str = Field()
project_id: str = Field()
automation_id: str = Field()
token: str = Field(default="")
server_url: str = Field(default="")
project_id: str = Field(default="")
automation_id: str = Field(default="")
@pytest.fixture()