1
0
mirror of https://github.com/undera/pylgbst.git synced 2020-11-18 19:37:26 -08:00

Don't use examples as package

This commit is contained in:
Andrey Pohilko 2017-09-30 18:33:04 +03:00
parent ec33f03327
commit ba20704d89
7 changed files with 6 additions and 6 deletions

View File

View File

@ -9,7 +9,7 @@ import logging
import socket import socket
import time import time
from examples.vernie import Vernie from . import Vernie
from pylgbst.peripherals import ColorDistanceSensor from pylgbst.peripherals import ColorDistanceSensor
host = '' host = ''

View File

@ -1,4 +1,4 @@
from examples.vernie import * from . import *
logging.basicConfig(level=logging.INFO) logging.basicConfig(level=logging.INFO)

View File

@ -1,4 +1,4 @@
from examples.vernie import * from . import *
robot = Vernie() robot = Vernie()

View File

@ -1,6 +1,6 @@
import six import six
from examples.vernie import * from . import *
robot = Vernie() robot = Vernie()

View File

@ -1,4 +1,4 @@
from examples.vernie import * from . import *
robot = Vernie() robot = Vernie()
running = True running = True

View File

@ -1,4 +1,4 @@
from examples.vernie import * from . import *
robot = Vernie() robot = Vernie()