Adds missing __dir__ definitions (#8479)

This commit is contained in:
Nikita Sobolev
2022-08-04 13:21:43 +03:00
committed by GitHub
parent 7953848101
commit 0480550fc3
5 changed files with 7 additions and 0 deletions

View File

@@ -32,3 +32,5 @@ __all__ = (
"ProcessPoolExecutor",
"ThreadPoolExecutor",
)
def __dir__() -> tuple[str, ...]: ...