File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 88import time
99import statistics
1010
11- # python setup.py sdist
12- # twine upload dist/lineus-0.1.3.tar.gz
13-
1411
1512class LineUs :
1613 """A class to control your Line-us"""
@@ -174,12 +171,12 @@ def _read_response(self):
174171 line += char
175172 elif char == b'\x00 ' :
176173 break
177- print (f'R:{ line .decode ("utf - 8" )} ' )
174+ # print(f'R:{line.decode("utf - 8")}')
178175 return line .decode ('utf-8' )
179176
180177 def _send_command (self , command ):
181178 """Send the command to Line-us"""
182- print (f'S:{ command } ' )
179+ # print(f'S:{command}')
183180 command += b'\x00 '
184181 self ._line_us .send (command )
185182
Original file line number Diff line number Diff line change 11from setuptools import setup
22
3+ # python setup.py sdist
4+ # twine upload dist/lineus-0.1.3.tar.gz
5+
36setup (
47 name = 'lineus' ,
5- version = '0.1.16 ' ,
8+ version = '0.1.18 ' ,
69 packages = ['lineus' ],
710 url = 'https://www.line-us.com' ,
811 license = 'MIT' ,
You can’t perform that action at this time.
0 commit comments