Skip to content

Commit 2b2030f

Browse files
committed
chore: refresh multiclass patch
1 parent 984a71f commit 2b2030f

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

multi-subclass.patch

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
7 files changed, 63 insertions(+), 63 deletions(-)
99

1010
diff --git a/pyproject.toml b/pyproject.toml
11-
index b550b56..2f8a926 100644
11+
index 86ed27d..57b9561 100644
1212
--- a/pyproject.toml
1313
+++ b/pyproject.toml
1414
@@ -5,7 +5,7 @@ requires = ['pdm-backend ~= 2.4']
@@ -21,7 +21,7 @@ index b550b56..2f8a926 100644
2121
description = 'Complete lxml external type annotation'
2222
readme = 'README.md'
2323
diff --git a/src/lxml-stubs/cssselect.pyi b/src/lxml-stubs/cssselect.pyi
24-
index 1ccf715..24f914b 100644
24+
index 51e7c0f..f4e4072 100644
2525
--- a/src/lxml-stubs/cssselect.pyi
2626
+++ b/src/lxml-stubs/cssselect.pyi
2727
@@ -6,8 +6,8 @@ import cssselect as _csel
@@ -35,7 +35,7 @@ index 1ccf715..24f914b 100644
3535
from .html import HtmlElement
3636
from .objectify import ObjectifiedElement
3737

38-
@@ -48,7 +48,7 @@ class CSSSelector(XPath):
38+
@@ -55,7 +55,7 @@ class CSSSelector(XPath):
3939
# we handle the 2 built-in element families (HtmlElement
4040
# and ObjectifiedElement), but the rest is up to users.
4141
@overload
@@ -44,7 +44,7 @@ index 1ccf715..24f914b 100644
4444
self,
4545
_etree_or_element: _ElementOrTree[ObjectifiedElement],
4646
/,
47-
@@ -64,7 +64,7 @@ class CSSSelector(XPath):
47+
@@ -71,7 +71,7 @@ class CSSSelector(XPath):
4848
@overload
4949
def __call__(
5050
self,
@@ -55,7 +55,7 @@ index 1ccf715..24f914b 100644
5555
- ) -> list[_ET]: ...
5656
+ ) -> list[_Element]: ...
5757
diff --git a/src/lxml-stubs/etree/_element.pyi b/src/lxml-stubs/etree/_element.pyi
58-
index 45dedde..6a2b3d4 100644
58+
index f114265..ff59370 100644
5959
--- a/src/lxml-stubs/etree/_element.pyi
6060
+++ b/src/lxml-stubs/etree/_element.pyi
6161
@@ -19,9 +19,9 @@ from ._parser import CustomTargetParser
@@ -355,7 +355,7 @@ index 45dedde..6a2b3d4 100644
355355
_ET2_co = TypeVar("_ET2_co", bound=_Element, default=_Element, covariant=True)
356356

357357
diff --git a/src/lxml-stubs/etree/_factory_func.pyi b/src/lxml-stubs/etree/_factory_func.pyi
358-
index 3525354..243383f 100644
358+
index b417517..29d0261 100644
359359
--- a/src/lxml-stubs/etree/_factory_func.pyi
360360
+++ b/src/lxml-stubs/etree/_factory_func.pyi
361361
@@ -14,7 +14,7 @@ from .._types import (
@@ -381,8 +381,8 @@ index 3525354..243383f 100644
381381
-) -> _ET: ...
382382
+) -> _Element: ...
383383
@overload # from element, parser ignored
384-
def ElementTree(element: _ET) -> _ElementTree[_ET]:
385-
"""ElementTree wrapper class for Element objects.
384+
def ElementTree(
385+
element: _ET,
386386
diff --git a/src/lxml-stubs/html/_element.pyi b/src/lxml-stubs/html/_element.pyi
387387
index b00bfb3..8cda2b3 100644
388388
--- a/src/lxml-stubs/html/_element.pyi
@@ -474,7 +474,7 @@ index b00bfb3..8cda2b3 100644
474474
expr: str,
475475
*,
476476
diff --git a/src/lxml-stubs/objectify/_element.pyi b/src/lxml-stubs/objectify/_element.pyi
477-
index 070b659..3185db1 100644
477+
index 0de70a8..1e7885e 100644
478478
--- a/src/lxml-stubs/objectify/_element.pyi
479479
+++ b/src/lxml-stubs/objectify/_element.pyi
480480
@@ -50,7 +50,7 @@ class ObjectifiedElement(ElementBase):

0 commit comments

Comments
 (0)