Skip to content

Commit 30fba0e

Browse files
committed
Remove debug
1 parent 614d9aa commit 30fba0e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lineus/lineus.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
import time
99
import statistics
1010

11-
# python setup.py sdist
12-
# twine upload dist/lineus-0.1.3.tar.gz
13-
1411

1512
class 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

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
from setuptools import setup
22

3+
# python setup.py sdist
4+
# twine upload dist/lineus-0.1.3.tar.gz
5+
36
setup(
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',

0 commit comments

Comments
 (0)