Skip to content

Commit e80c0a3

Browse files
style: Fix formatting in UV test file
Co-Authored-By: Aaron <AJ> Steers <aj@airbyte.io>
1 parent c21b049 commit e80c0a3

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/integration_tests/test_uv_functionality.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010

1111

1212
# TODO: Move these utility functions to a dedicated module under "utils"
13-
def run_uv_command(args: list[str], env: dict | None = None, check: bool = False) -> subprocess.CompletedProcess:
13+
def run_uv_command(
14+
args: list[str], env: dict | None = None, check: bool = False
15+
) -> subprocess.CompletedProcess:
1416
"""Run a UV command and return the result.
1517
1618
Args:
@@ -118,7 +120,9 @@ def test_uv_package_install(temp_venv: Path) -> None:
118120
"""Test that UV can install a package and we can execute it."""
119121
# Create venv and install black
120122
create_venv(temp_venv, with_pip=True)
121-
install_package(temp_venv, "black") # Use black since it's a common tool that creates executables
123+
install_package(
124+
temp_venv, "black"
125+
) # Use black since it's a common tool that creates executables
122126

123127
# Verify package executable exists and is runnable
124128
black_path = get_executable_path(temp_venv, "black")

0 commit comments

Comments
 (0)