Skip to content

Commit 823f53c

Browse files
committed
remove redundant generic superclass from CIDict
1 parent 7ab4d42 commit 823f53c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • opentelemetry-instrumentation/src/opentelemetry/instrumentation

opentelemetry-instrumentation/src/opentelemetry/instrumentation/cidict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
VT = TypeVar("VT")
3232

3333

34-
class CIDict(MutableMapping[KT, VT], Generic[KT, VT]):
34+
class CIDict(MutableMapping[KT, VT]):
3535
def __init__(
3636
self,
3737
data: Optional[Union[Mapping[KT, VT], Iterable[Tuple[KT, VT]]]] = None,

0 commit comments

Comments
 (0)