X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/e1e89091d1de878c98e2d2b0cefd81cc75e7a128..3455389e486e0bb1d8a8318cb5f266b7ec8964dd:/tests/import_spacing.py diff --git a/tests/import_spacing.py b/tests/import_spacing.py index a9856e7..e9f7330 100644 --- a/tests/import_spacing.py +++ b/tests/import_spacing.py @@ -21,16 +21,16 @@ from .a.b.c.subprocess import * from . import tasks __all__ = ( - base_events.__all__ + - coroutines.__all__ + - events.__all__ + - futures.__all__ + - locks.__all__ + - protocols.__all__ + - runners.__all__ + - queues.__all__ + - streams.__all__ + - tasks.__all__ + base_events.__all__ + + coroutines.__all__ + + events.__all__ + + futures.__all__ + + locks.__all__ + + protocols.__all__ + + runners.__all__ + + queues.__all__ + + streams.__all__ + + tasks.__all__ ) @@ -38,7 +38,9 @@ __all__ = ( """The asyncio package, tracking PEP 3156.""" + # flake8: noqa + import sys # This relies on each of the submodules having an __all__ variable. @@ -58,14 +60,14 @@ from .a.b.c.subprocess import * from . import tasks __all__ = ( - base_events.__all__ + - coroutines.__all__ + - events.__all__ + - futures.__all__ + - locks.__all__ + - protocols.__all__ + - runners.__all__ + - queues.__all__ + - streams.__all__ + - tasks.__all__ + base_events.__all__ + + coroutines.__all__ + + events.__all__ + + futures.__all__ + + locks.__all__ + + protocols.__all__ + + runners.__all__ + + queues.__all__ + + streams.__all__ + + tasks.__all__ )