From b88912c6a7a13597b8c5ac93093d7eef86ab1ebb Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Mon, 15 Oct 2018 13:12:09 +0100 Subject: [PATCH] __all__ should be a List[str] --- aiofiles/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiofiles/__init__.py b/aiofiles/__init__.py index dbb51cf..2028126 100644 --- a/aiofiles/__init__.py +++ b/aiofiles/__init__.py @@ -3,4 +3,4 @@ __version__ = "0.5.0.dev0" -__all__ = (open,) +__all__ = ['open']