We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9729eeb commit 0d8d00aCopy full SHA for 0d8d00a
Lib/asyncio/tools.py
@@ -1,11 +1,11 @@
1
"""Tools to analyze tasks running in asyncio programs."""
2
3
+from collections import defaultdict
4
import csv
5
+from itertools import count
6
+from enum import Enum, StrEnum, auto
7
import sys
8
from _remote_debugging import RemoteUnwinder, FrameInfo
-from collections import defaultdict
-from enum import Enum, StrEnum, auto
-from itertools import count
9
10
class NodeType(Enum):
11
COROUTINE = 1
0 commit comments