Skip to content

Commit 2d04ec6

Browse files
authored
Merge pull request #120 from Mrkun5018/main
Modify the import path of conveyor_api
2 parents 7e646fe + 8e97727 commit 2d04ec6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

pymycobot/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
from pymycobot.pro400 import Pro400
3939
from pymycobot.pro400client import Pro400Client
4040
from pymycobot.myarmm_control import MyArmMControl
41-
from conveyor_api import ConveyorAPI
41+
from pymycobot.conveyor_api import ConveyorAPI
4242
__all__ = [
4343
"MyPalletizer260",
4444
"MechArm270",

pymycobot/conveyor_api.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import logging
22
import threading
33
import time
4-
5-
from serial import Serial
6-
from common import *
74
import struct
5+
from serial import Serial
86

97

108
class CommandGenre(object):

0 commit comments

Comments
 (0)