Skip to content

Commit 7d139b3

Browse files
committed
fix unwanted replacement with sed
Signed-off-by: oleg.hoefling <[email protected]>
1 parent ceaea9c commit 7d139b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/xmlsec/__init__.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
from collections.abc import Callable, Iterable
2-
from typing import Any, AnyStr, IO, typeVar, overload
2+
from typing import Any, AnyStr, IO, TypeVar, overload
33
from _typeshed import GenericPath, Self, StrOrBytesPath
44

55
from lxml.etree import _Element
66

77
from xmlsec.constants import __KeyData as KeyData, __Transform as Transform
88

9-
_E = typeVar('_E', bound=_Element)
9+
_E = TypeVar('_E', bound=_Element)
1010

1111
def enable_debug_trace(enabled: bool = ...) -> None: ...
1212
def init() -> None: ...

0 commit comments

Comments
 (0)