aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/py_native/test.py
diff options
context:
space:
mode:
authorGravatar lberki <lberki@google.com>2018-02-14 15:12:23 +0100
committerGravatar Philipp Wollermann <philwo@google.com>2018-02-14 15:54:48 +0100
commitfa0fac2a4e8a2e5c01b8390878289d00dcc17dba (patch)
tree848acb70c03d5cbccd1c30234bef513a4a871f40 /examples/py_native/test.py
parent0f9c6ea574918dda094cf5423fa3822112846c30 (diff)
Automated rollback of commit 0f9c6ea574918dda094cf5423fa3822112846c30.
*** Reason for rollback *** Breaks Kokoro and I accidentally submitted the change without presubmit checks. *** Original change description *** Make __init__.py files creation optional Introduce a new attribute to py_binary and py_test to control whether to create `__init__.py` or not. Fixes https://github.com/bazelbuild/rules_python/issues/55 Closes #4470. PiperOrigin-RevId: 185676592
Diffstat (limited to 'examples/py_native/test.py')
-rw-r--r--examples/py_native/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/py_native/test.py b/examples/py_native/test.py
index b860940a38..f9543aa727 100644
--- a/examples/py_native/test.py
+++ b/examples/py_native/test.py
@@ -1,8 +1,8 @@
"""A tiny example binary for the native Python rules of Bazel."""
import unittest
+from examples.py_native.lib import GetNumber
from fib import Fib
-from lib import GetNumber
class TestGetNumber(unittest.TestCase):