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

Commit

Permalink
Fix __version__ import
Browse files Browse the repository at this point in the history
  • Loading branch information
wjsi committed Apr 23, 2021
1 parent a2856ab commit a701ec5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/asyncio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# Task.all_tasks() method. This function will be removed in 3.9.
from .tasks import _all_tasks_compat # NoQA

__all__ = ('__version__' +
__all__ = (('__version__',) +
base_events.__all__ +
coroutines.__all__ +
events.__all__ +
Expand Down
2 changes: 1 addition & 1 deletion src/asyncio/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.1.1'
__version__ = '0.1.2'

0 comments on commit a701ec5

Please sign in to comment.