From 2c75025744c7b7988877bd26182eed259c0222cb Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Thu, 28 Nov 2024 13:27:40 +0100 Subject: [PATCH] missing argument in definition --- stam.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stam.pyi b/stam.pyi index 706fa68..473b687 100644 --- a/stam.pyi +++ b/stam.pyi @@ -927,7 +927,7 @@ class Annotation: Returns the substore this annotation is a part of, or `None` if the annotation is part of the root store. """ - def alignments(self) -> list[list[Union[TextSelection,Annotation]]]: + def alignments(self, **kwargs) -> list[list[Union[TextSelection,Annotation]]]: """ If this annotation describes a transposition (https://github.com/annotation/stam/blob/master/extensions/stam-transpose/README.md), this will extract the alignments in the transposition to a list of lists. Each inner lists hold `TextSelection` instances that are in alignment.