Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix
Browse files Browse the repository at this point in the history
jokasimr committed Jan 15, 2024
1 parent 36aeedd commit c699e1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sciline/display.py
Original file line number Diff line number Diff line change
@@ -61,8 +61,8 @@ def pipeline_html_repr(
providers: Iterable[Tuple[Key, Tuple[Union[Key, TypeVar], ...], Provider]]
) -> str:
def associate_table_values(
p: Tuple[Key, Tuple[Key | TypeVar, ...], Provider]
) -> Tuple[Key, Union[type, Tuple[Key | TypeVar, ...]]]:
p: Tuple[Key, Tuple[Union[Key, TypeVar], ...], Provider]
) -> Tuple[Key, Union[type, Tuple[Union[Key, TypeVar], ...]]]:
key, args, v = p
if isinstance(key, Item):
return (key.label[0].tp, key.tp)

0 comments on commit c699e1c

Please sign in to comment.