Skip to content

Commit 324714a

Browse files
committed
Add a mypy tuple[Any, ...] type
1 parent 20a3dbd commit 324714a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/structure/alignment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def __init__(
188188
sparse: bool = False,
189189
):
190190
self.objects = tuple(objects)
191-
self.objects_matching_indexes = ()
191+
self.objects_matching_indexes: tuple[Any, ...] = ()
192192
self.objects_matching_index_vars = ()
193193

194194
if not isinstance(join, CombineKwargDefault) and join not in get_args(

0 commit comments

Comments
 (0)