Skip to content

Commit eb29590

Browse files
committed
Fix pre-commit and add missing dummy compatibility proxy
1 parent a277df5 commit eb29590

4 files changed

Lines changed: 5 additions & 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
os.environ["USE_BAZEL_VERSION"] = bazel_version
9292

third_party/dummy_compatibility_proxy/BUILD

Whitespace-only changes.

third_party/dummy_compatibility_proxy/WORKSPACE

Whitespace-only changes.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
JavaInfo = provider()
2+
java_common = struct()
3+
java_common_internal_compile = struct()
4+
java_info_internal_merge = struct()

0 commit comments

Comments
 (0)