Skip to content
This repository was archived by the owner on Jan 10, 2022. It is now read-only.

Commit a701ec5

Browse files
committed
Fix __version__ import
1 parent a2856ab commit a701ec5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/asyncio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# Task.all_tasks() method. This function will be removed in 3.9.
2323
from .tasks import _all_tasks_compat # NoQA
2424

25-
__all__ = ('__version__' +
25+
__all__ = (('__version__',) +
2626
base_events.__all__ +
2727
coroutines.__all__ +
2828
events.__all__ +

src/asyncio/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '0.1.1'
1+
__version__ = '0.1.2'
22

0 commit comments

Comments
 (0)