Skip to content

Commit f9e2e64

Browse files
remove support for deprecated typing.ByteString
1 parent 7672c91 commit f9e2e64

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22
## Pedantic 2.2.3
33
- added `3.14.0-rc.1` to CI test matrix
4+
- remove support for deprecated `typing.ByteString`
45
- fix `WithDecoratedMethods`
56

67
## Pedantic 2.2.2

pedantic/type_checking_logic/check_types.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,6 @@ def _instancecheck_type(value: Any, type_: Any, type_vars: Dict, context: Dict[s
965965
'typing.Sequence': _instancecheck_iterable,
966966
'typing.Iterable': _instancecheck_iterable,
967967
'typing.MutableSequence': _instancecheck_iterable,
968-
'typing.ByteString': _instancecheck_iterable,
969968
'typing.Deque': _instancecheck_iterable,
970969
'typing.List': _instancecheck_iterable,
971970
'typing.Set': _instancecheck_iterable,

0 commit comments

Comments
 (0)