Skip to content

Commit

Permalink
new release
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-ld committed Nov 30, 2021
1 parent 378402a commit 069b763
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ urllib3==1.26.7
voluptuous==0.12.2
yarl==1.7.2
zeroconf==0.37.0
TgCrypto==1.2.2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name="smart_tv_telegram",
version="1.3.3.dev0",
version="1.3.4.dev0",
setup_requires=["wheel"],
author="andrew-ld",
author_email="[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions smart_tv_telegram/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from .http import Http, OnStreamClosed
from .bot import Bot

__version__ = "1.3.3"
__version_info__ = ("1", "3", "3")
__version__ = "1.3.4"
__version_info__ = ("1", "3", "4")
__author__ = "https://github.com/andrew-ld"

__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion smart_tv_telegram/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def arg_parser(devices: DeviceFinderCollection):
parser = argparse.ArgumentParser()
parser.add_argument("-c", "--config", type=lambda x: open_config(parser, x), default="config.ini")
parser.add_argument("-v", "--verbosity", type=int, choices=[0, 1, 2], default=0)
parser.add_argument("-hc", "--healthcheck", type=bool, default=False, const=True)
parser.add_argument("-hc", "--healthcheck", type=bool, default=False, const=True, nargs="?")

args = parser.parse_args()

Expand Down

0 comments on commit 069b763

Please sign in to comment.