Add __all__ for modules beginning with 'e', 'f' and 'g' (#7325)

This commit is contained in:
Alex Waygood
2022-02-20 23:08:14 +00:00
committed by GitHub
parent 3ead05f277
commit 2fe519c3a7
13 changed files with 192 additions and 1 deletions

View File

@@ -1,6 +1,8 @@
from _typeshed import SupportsItems
from typing import Generic, Iterable, TypeVar
__all__ = ["TopologicalSorter", "CycleError"]
_T = TypeVar("_T")
class TopologicalSorter(Generic[_T]):