Skip to content

Commit 9c978c2

Browse files
lint
1 parent a233064 commit 9c978c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lib/test/test_capi/test_opt.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3203,15 +3203,15 @@ class AsyncIter:
32033203
def __init__(self):
32043204
self.limit = 0
32053205
self.count = 0
3206-
3206+
32073207
def __aiter__(self):
32083208
return self
3209-
3209+
32103210
async def __anext__(self):
32113211
if self.count >= self.limit:
32123212
...
32133213
self.count += 1j
3214-
3214+
32153215
class AsyncCtx:
32163216
async def async_for_driver():
32173217
try:
@@ -3223,7 +3223,7 @@ async def async_for_driver():
32233223
...
32243224
except Exception:
32253225
...
3226-
3226+
32273227
c = async_for_driver()
32283228
while True:
32293229
try:

0 commit comments

Comments
 (0)