aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzonedabone2011-05-08 02:22:17 +0000
committerzonedabone2011-05-08 02:22:17 +0000
commitd3a5cbfb02d8acd19380541bd1a9c4514ab79580 (patch)
tree9b78a9e58d020af7e1e2b60213fa1949b109df28
parent6a35f0fd5366041dcfd5954c9d7f263dbaee9c70 (diff)
Changed to absolute imports as suggested by PEP-008
-rw-r--r--nxt/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/nxt/__init__.py b/nxt/__init__.py
index 01be052..f61154c 100644
--- a/nxt/__init__.py
+++ b/nxt/__init__.py
@@ -12,6 +12,6 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
-from .locator import find_one_brick
-from .motor import *
-from .sensor import *
+from nxt.locator import find_one_brick
+from nxt.motor import *
+from nxt.sensor import *