chore: use Ruff (#1405)

chore: use ruff

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
Henry Schreiner
2023-01-30 15:53:44 -05:00
committed by GitHub
parent 80a8ec7f32
commit c8b037ba3e
25 changed files with 141 additions and 157 deletions
+2 -2
View File
@@ -606,7 +606,7 @@ def virtualenv(
else:
paths = [str(venv_path / "bin")]
env = os.environ.copy()
env["PATH"] = os.pathsep.join(paths + [env["PATH"]])
env["PATH"] = os.pathsep.join([*paths, env["PATH"]])
return env
@@ -648,7 +648,7 @@ def find_compatible_wheel(wheels: Sequence[T], identifier: str) -> T | None:
continue
else:
# Windows should exactly match
if not tag.platform == platform:
if tag.platform != platform:
continue
# If all the filters above pass, then the wheel is a previously built compatible wheel.