This commit is contained in:
2025-05-22 20:25:38 +02:00
parent 09f6750c2b
commit ce03fbf12f
529 changed files with 3353 additions and 3312 deletions

View File

@@ -300,7 +300,7 @@ class Annotated(SupportsAnnotations):
def _annotate(self, values: _AnnotationDict) -> Self:
_values = self._annotations.union(values)
new = self._with_annotations(_values) # type: ignore
new = self._with_annotations(_values)
return new
def _with_annotations(self, values: _AnnotationDict) -> Self: