File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 13
13
import os
14
14
import traceback
15
15
from abc import ABC , abstractmethod
16
- from typing import Callable , Optional
16
+ from collections .abc import Callable
17
+ from typing import Optional
17
18
18
19
import astroid
19
20
from astroid import nodes
Original file line number Diff line number Diff line change 9
9
10
10
from __future__ import annotations
11
11
12
- from collections .abc import Iterable , Iterator
13
- from typing import Any , Callable , TypeVar
12
+ from collections .abc import Callable , Iterable , Iterator
13
+ from typing import Any , TypeVar
14
14
15
15
from pylint .reporters .ureports .base_writer import BaseWriter
16
16
Original file line number Diff line number Diff line change 7
7
import sys
8
8
import traceback
9
9
from collections import defaultdict
10
- from collections .abc import Sequence
11
- from typing import TYPE_CHECKING , Callable
10
+ from collections .abc import Callable , Sequence
11
+ from typing import TYPE_CHECKING
12
12
13
13
from astroid import nodes
14
14
You can’t perform that action at this time.
0 commit comments