File tree Expand file tree Collapse file tree 21 files changed +21
-21
lines changed Expand file tree Collapse file tree 21 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 22from __future__ import annotations
33
44import ast
5+ from collections .abc import Callable
56from collections .abc import Iterable
67from collections .abc import Mapping
78from collections .abc import Sequence
2122from types import FrameType
2223from types import TracebackType
2324from typing import Any
24- from typing import Callable
2525from typing import ClassVar
2626from typing import Final
2727from typing import final
Original file line number Diff line number Diff line change 1616from __future__ import annotations
1717
1818import collections as _collections
19+ from collections .abc import Callable
1920from collections .abc import Iterator
2021import dataclasses as _dataclasses
2122from io import StringIO as _StringIO
2223import re
2324import types as _types
2425from typing import Any
25- from typing import Callable
2626from typing import IO
2727
2828
Original file line number Diff line number Diff line change 44
55import ast
66from collections import defaultdict
7+ from collections .abc import Callable
78from collections .abc import Iterable
89from collections .abc import Iterator
910from collections .abc import Sequence
2223import sys
2324import tokenize
2425import types
25- from typing import Callable
2626from typing import IO
2727from typing import TYPE_CHECKING
2828
Original file line number Diff line number Diff line change 44from __future__ import annotations
55
66import collections .abc
7+ from collections .abc import Callable
78from collections .abc import Iterable
89from collections .abc import Mapping
910from collections .abc import Sequence
1011from collections .abc import Set as AbstractSet
1112import os
1213import pprint
1314from typing import Any
14- from typing import Callable
1515from typing import Literal
1616from typing import Protocol
1717from unicodedata import normalize
Original file line number Diff line number Diff line change 55
66import argparse
77import collections .abc
8+ from collections .abc import Callable
89from collections .abc import Generator
910from collections .abc import Iterable
1011from collections .abc import Iterator
2526import types
2627from types import FunctionType
2728from typing import Any
28- from typing import Callable
2929from typing import cast
3030from typing import Final
3131from typing import final
Original file line number Diff line number Diff line change 22from __future__ import annotations
33
44import argparse
5+ from collections .abc import Callable
56from collections .abc import Mapping
67from collections .abc import Sequence
78import os
89from typing import Any
9- from typing import Callable
1010from typing import cast
1111from typing import final
1212from typing import Literal
Original file line number Diff line number Diff line change 55from __future__ import annotations
66
77import argparse
8+ from collections .abc import Callable
89from collections .abc import Generator
910import functools
1011import sys
1112import types
1213from typing import Any
13- from typing import Callable
1414import unittest
1515
1616from _pytest import outcomes
Original file line number Diff line number Diff line change 44from __future__ import annotations
55
66import bdb
7+ from collections .abc import Callable
78from collections .abc import Generator
89from collections .abc import Iterable
910from collections .abc import Sequence
1819import traceback
1920import types
2021from typing import Any
21- from typing import Callable
2222from typing import TYPE_CHECKING
2323import warnings
2424
Original file line number Diff line number Diff line change 55from collections import defaultdict
66from collections import deque
77from collections import OrderedDict
8+ from collections .abc import Callable
89from collections .abc import Generator
910from collections .abc import Iterable
1011from collections .abc import Iterator
2021import sys
2122import types
2223from typing import Any
23- from typing import Callable
2424from typing import cast
2525from typing import Final
2626from typing import final
Original file line number Diff line number Diff line change 1010
1111from __future__ import annotations
1212
13+ from collections .abc import Callable
1314from datetime import datetime
1415from datetime import timezone
1516import functools
1617import os
1718import platform
1819import re
1920from re import Match
20- from typing import Callable
2121import xml .etree .ElementTree as ET
2222
2323from _pytest import nodes
You can’t perform that action at this time.
0 commit comments