File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
from collections .abc import Iterable
9
9
from collections .abc import Mapping
10
10
from collections .abc import Sequence
11
+ from collections .abc import Set as AbstractSet
11
12
import os
12
13
import pprint
13
- from typing import AbstractSet
14
14
from typing import Any
15
15
from typing import Literal
16
16
from typing import Protocol
Original file line number Diff line number Diff line change 12
12
from collections .abc import Mapping
13
13
from collections .abc import MutableMapping
14
14
from collections .abc import Sequence
15
+ from collections .abc import Set as AbstractSet
15
16
import dataclasses
16
17
import functools
17
18
import inspect
18
19
import os
19
20
from pathlib import Path
20
21
import sys
21
22
import types
22
- from typing import AbstractSet
23
23
from typing import Any
24
24
from typing import cast
25
25
from typing import Final
Original file line number Diff line number Diff line change 5
5
6
6
from collections .abc import Generator
7
7
from collections .abc import Mapping
8
+ from collections .abc import Set as AbstractSet
8
9
from contextlib import contextmanager
9
10
from contextlib import nullcontext
10
11
from datetime import datetime
18
19
from pathlib import Path
19
20
import re
20
21
from types import TracebackType
21
- from typing import AbstractSet
22
22
from typing import final
23
23
from typing import Generic
24
24
from typing import Literal
Original file line number Diff line number Diff line change 7
7
from collections .abc import Iterable
8
8
from collections .abc import Iterator
9
9
from collections .abc import Sequence
10
+ from collections .abc import Set as AbstractSet
10
11
import dataclasses
11
12
import fnmatch
12
13
import functools
15
16
import os
16
17
from pathlib import Path
17
18
import sys
18
- from typing import AbstractSet
19
19
from typing import final
20
20
from typing import Literal
21
21
from typing import overload
Original file line number Diff line number Diff line change 5
5
import collections
6
6
from collections .abc import Collection
7
7
from collections .abc import Iterable
8
+ from collections .abc import Set as AbstractSet
8
9
import dataclasses
9
- from typing import AbstractSet
10
10
from typing import Optional
11
11
from typing import TYPE_CHECKING
12
12
You can’t perform that action at this time.
0 commit comments