Update fixtures.py

Minor upgrade of ruff breaks without this fix
This commit is contained in:
Jonathon Broughton
2025-02-10 14:57:26 +00:00
committed by GitHub
parent 78c55b787f
commit 89280acf53
+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()