Skip to content

Commit 70ab0d3

Browse files
committed
chore: Delint
1 parent df37662 commit 70ab0d3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/toolbox-core/tests/conftest.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,12 @@ def project_id() -> str:
101101
def toolbox_version() -> str:
102102
return get_env_var("TOOLBOX_VERSION")
103103

104+
104105
@pytest_asyncio.fixture(scope="session")
105106
def toolbox_bucket() -> str:
106107
return get_env_var("TOOLBOX_BUCKET")
107108

109+
108110
@pytest_asyncio.fixture(scope="session")
109111
def tools_file_path(project_id: str) -> Generator[str]:
110112
"""Provides a temporary file path containing the tools manifest."""
@@ -133,7 +135,9 @@ def auth_token2(project_id: str) -> str:
133135

134136

135137
@pytest_asyncio.fixture(scope="session")
136-
def toolbox_server(toolbox_version: str, toolbox_bucket: str, tools_file_path: str) -> Generator[None]:
138+
def toolbox_server(
139+
toolbox_version: str, toolbox_bucket: str, tools_file_path: str
140+
) -> Generator[None]:
137141
"""Starts the toolbox server as a subprocess."""
138142
print("Downloading toolbox binary from gcs bucket...")
139143
source_blob_name = get_toolbox_binary_url(toolbox_version)

0 commit comments

Comments
 (0)