load("@rules_python//python:defs.bzl", "py_binary", "py_test") py_binary( name = "offset-fixer", srcs = ["offset-fixer.py"], visibility = ["//visibility:public"], ) py_test( name = "offset-fixer_test", srcs = ["offset-fixer_test.py"], data = ["offset-fixer.py"], )