Skip to content

Commit d676beb

Browse files
jcfrCopilot
andcommitted
chore: Fix setting of isolated_flags in tests/test_find_package.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent b234742 commit d676beb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_find_package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def module(self, *args: str) -> None:
9494
return self.run(str(self.executable), "-m", *args)
9595

9696
def install(self, *args: str, isolated: bool = True) -> None:
97-
isolated_flags = "" if isolated else ["--no-build-isolation"]
97+
isolated_flags = [] if isolated else ["--no-build-isolation"]
9898
self.module("pip", "install", *isolated_flags, *args)
9999

100100

0 commit comments

Comments
 (0)