Skip to content

Commit

Permalink
Apply ruff/bugbear new rules (#2718)
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed May 9, 2024
1 parent e28dfa7 commit 60233a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/virtualenv/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def run(args=None, options=None, env=None):
print(f"subprocess call failed for {exception.cmd} with code {exception.code}") # noqa: T201
print(exception.out, file=sys.stdout, end="") # noqa: T201
print(exception.err, file=sys.stderr, end="") # noqa: T201
raise SystemExit(exception.code) # noqa: TRY200, B904
raise SystemExit(exception.code) # noqa: B904


class LogSession:
Expand Down
2 changes: 1 addition & 1 deletion src/virtualenv/create/debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def run(): # noqa: PLR0912
except (ValueError, TypeError) as exception: # pragma: no cover
sys.stderr.write(repr(exception))
sys.stdout.write(repr(result)) # pragma: no cover
raise SystemExit(1) # noqa: TRY200, B904 # pragma: no cover
raise SystemExit(1) # noqa: B904 # pragma: no cover


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion src/virtualenv/create/describe.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from virtualenv.info import IS_WIN


class Describe(ABC):
class Describe:
"""Given a host interpreter tell us information about what the created interpreter might look like."""

suffix = ".exe" if IS_WIN else ""
Expand Down

0 comments on commit 60233a1

Please sign in to comment.