Skip to content

Commit 2301c4b

Browse files
committed
Fix typehint
1 parent 76b01ea commit 2301c4b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ufl/algorithms/formdata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,12 +414,12 @@ def max_subdomain_ids(self) -> dict[str, int]:
414414
return _compute_max_subdomain_ids(self.integral_data)
415415

416416
@cached_property
417-
def argument_elements(self) -> tuple[Any]:
417+
def argument_elements(self) -> tuple[Any, ...]:
418418
"""The set of elements the arguments in the form."""
419419
return tuple(f.ufl_element() for f in self.original_form.arguments())
420420

421421
@property
422-
def coefficient_elements(self) -> tuple[Any]:
422+
def coefficient_elements(self) -> tuple[Any, ...]:
423423
"""The set of elements used for coefficients in the form."""
424424
return self._coefficient_elements
425425

0 commit comments

Comments
 (0)