Skip to content

Commit 791150e

Browse files
committed
Make Timeout class available in __all__
1 parent f75a5e1 commit 791150e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ CHANGES
1616

1717
(#258)
1818

19+
- Make ``Timeout`` class available in ``__all__``.
20+
1921
4.0.0 (2021-11-01)
2022
------------------
2123

async_timeout/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
__version__ = "4.0.1"
1212

1313

14-
__all__ = ("timeout", "timeout_at")
14+
__all__ = ("timeout", "timeout_at", "Timeout")
1515

1616

1717
def timeout(delay: Optional[float]) -> "Timeout":

0 commit comments

Comments
 (0)