Skip to content

Commit 0d8d00a

Browse files
committed
fixup! Reintroduce _row_header, add _fmt_table_row() utility
1 parent 9729eeb commit 0d8d00a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lib/asyncio/tools.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
"""Tools to analyze tasks running in asyncio programs."""
22

3+
from collections import defaultdict
34
import csv
5+
from itertools import count
6+
from enum import Enum, StrEnum, auto
47
import sys
58
from _remote_debugging import RemoteUnwinder, FrameInfo
6-
from collections import defaultdict
7-
from enum import Enum, StrEnum, auto
8-
from itertools import count
99

1010
class NodeType(Enum):
1111
COROUTINE = 1

0 commit comments

Comments
 (0)