We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bcff61 commit 3c9aeccCopy full SHA for 3c9aecc
pymycobot/error.py
@@ -117,5 +117,5 @@ def check_coords(vs):
117
118
def check_rgb(args):
119
for i in args:
120
- if not check_range(id, [0, 255]):
+ if not check_range(i, [0, 255]):
121
raise MyCobotDataException('The RGB value needs be 0 ~ 255')
setup.py
@@ -1,6 +1,6 @@
1
import sys
2
3
-VERSION = "2.3.2"
+VERSION = "2.3.3"
4
5
PYTHON_VERSION = sys.version_info[:2]
6
if (2, 7) != PYTHON_VERSION < (3, 5):
0 commit comments