Skip to content

Commit

Permalink
annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatera committed Sep 17, 2024
1 parent b1740f8 commit 6155605
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mathics/core/pattern.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


from itertools import chain
from typing import Callable, List, Optional, Tuple
from typing import Callable, List, Optional, Tuple, Union

from mathics.core.atoms import Integer
from mathics.core.attributes import A_FLAT, A_ONE_IDENTITY, A_ORDERLESS
Expand Down Expand Up @@ -875,7 +875,7 @@ def yield_head(head_vars, _):
def expression_pattern_match_element_orderless(
parms: dict,
candidates: tuple,
element_candidates: tuple,
element_candidates: Union[tuple, set],
less_first: bool,
set_lengths: tuple,
):
Expand Down

0 comments on commit 6155605

Please sign in to comment.