Skip to content

Commit

Permalink
Remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
robertpoll committed Nov 28, 2019
1 parent 614d9aa commit 30fba0e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
7 changes: 2 additions & 5 deletions lineus/lineus.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
import time
import statistics

# python setup.py sdist
# twine upload dist/lineus-0.1.3.tar.gz


class LineUs:
"""A class to control your Line-us"""
Expand Down Expand Up @@ -174,12 +171,12 @@ def _read_response(self):
line += char
elif char == b'\x00':
break
print(f'R:{line.decode("utf - 8")}')
# print(f'R:{line.decode("utf - 8")}')
return line.decode('utf-8')

def _send_command(self, command):
"""Send the command to Line-us"""
print(f'S:{command}')
# print(f'S:{command}')
command += b'\x00'
self._line_us.send(command)

Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from setuptools import setup

# python setup.py sdist
# twine upload dist/lineus-0.1.3.tar.gz

setup(
name='lineus',
version='0.1.16',
version='0.1.18',
packages=['lineus'],
url='https://www.line-us.com',
license='MIT',
Expand Down

0 comments on commit 30fba0e

Please sign in to comment.