-
Notifications
You must be signed in to change notification settings - Fork 1
[RUFF] Enable SLF rule (private member access) #1046
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: devel
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -65,7 +65,7 @@ def _resolve_rlocation(rlocation_path: str) -> Path | None: | |||||
| bazel_wrapper subprocess (which runs outside Bazel runfiles). | ||||||
| """ | ||||||
| try: | ||||||
| from util.bazel.runfiles import get_required_path # noqa: PLC0415 | ||||||
| from util.bazel.runfiles import get_required_path | ||||||
|
||||||
| from util.bazel.runfiles import get_required_path | |
| from util.bazel.runfiles import get_required_path # noqa: PLC0415 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Renaming
_runningtorunningbreaks existing call sites that still checkproxy._running(e.g.devinfra/claude/test_integration.py). To avoid runtime/test failures, either update those call sites in this PR or provide a backwards-compatible alias (e.g., a property_runningthat proxies torunning) during the transition.