Skip to content

Commit 0d557af

Browse files
committed
Run yapf
1 parent 2a13020 commit 0d557af

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

async_generator/__init__.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
from ._util import aclosing, asynccontextmanager
1010

1111
__all__ = [
12-
"async_generator", "yield_", "yield_from_", "aclosing", "isasyncgen",
13-
"isasyncgenfunction", "asynccontextmanager",
12+
"async_generator",
13+
"yield_",
14+
"yield_from_",
15+
"aclosing",
16+
"isasyncgen",
17+
"isasyncgenfunction",
18+
"asynccontextmanager",
1419
]

async_generator/_util.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from functools import wraps
33
from ._impl import isasyncgenfunction
44

5+
56
class aclosing:
67
def __init__(self, aiter):
78
self._aiter = aiter

0 commit comments

Comments
 (0)