Skip to content

Commit

Permalink
fix: Missing all imports from the taskgroup submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
achimnol committed Nov 17, 2020
1 parent 98f899a commit bc9bada
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/aiotools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@
'__version__',
)

from .context import * # noqa
from .defer import * # noqa
from .func import * # noqa
from .iter import * # noqa
from .timer import * # noqa
from .server import * # noqa
from .context import * # noqa
from .defer import * # noqa
from .func import * # noqa
from .iter import * # noqa
from .taskgroup import * # noqa
from .timer import * # noqa
from .server import * # noqa

0 comments on commit bc9bada

Please sign in to comment.