Skip to content

Commit

Permalink
fixed python 3.6 call
Browse files Browse the repository at this point in the history
  • Loading branch information
ampledata committed Jun 10, 2022
1 parent 8380d84 commit 26bec33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions pytak/client_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@
if sys.version_info[:2] >= (3, 7):
from asyncio import get_running_loop
else:
from asyncio import ( # pylint: disable=no-name-in-module
_get_running_loop as get_running_loop,
)
from asyncio import get_event_loop as get_running_loop

__author__ = "Greg Albrecht W2GMD <[email protected]>"
__copyright__ = "Copyright 2022 Greg Albrecht"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import setuptools

__title__ = "pytak"
__version__ = "5.0.2"
__version__ = "5.0.3"
__author__ = "Greg Albrecht W2GMD <[email protected]>"
__copyright__ = "Copyright 2022 Greg Albrecht"
__license__ = "Apache License, Version 2.0"
Expand Down

0 comments on commit 26bec33

Please sign in to comment.