Skip to content

Commit 4d975b4

Browse files
committed
fix: lint trailing whitespace
1 parent 52b7dd7 commit 4d975b4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/test/test_asyncio/test_base_events.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1041,15 +1041,15 @@ async def iter_one():
10411041

10421042
asyncio.create_task(iter_one())
10431043
return status
1044-
1044+
10451045
def test_shutdown_asyncgens_reports_cancelled_error(self):
10461046
# gh-150866: shutdown_asyncgens silently swallowed
10471047
# CancelledError raised during aclose() because the check was
10481048
# isinstance(result, Exception), but CancelledError inherits
10491049
# from BaseException.
10501050
self.loop._process_events = mock.Mock()
10511051
self.loop._write_to_self = mock.Mock()
1052-
1052+
10531053
async def agen_cancel():
10541054
try:
10551055
yield 1

0 commit comments

Comments
 (0)