Skip to content

Commit 82e2385

Browse files
committed
Fix pre-commit ruff failures in setup.py
1 parent bd25e6d commit 82e2385

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def run(self):
8686
os.path.dirname(os.path.realpath(__file__)), ".bazelversion"
8787
)
8888
if os.path.exists(bazelversion_path):
89-
with open(bazelversion_path, "r") as f:
89+
with open(bazelversion_path) as f:
9090
bazel_version = f.read().strip()
9191
if "USE_BAZEL_VERSION" not in os.environ:
9292
os.environ["USE_BAZEL_VERSION"] = bazel_version

0 commit comments

Comments
 (0)