Skip to content

Commit

Permalink
fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanzwicknagl committed Apr 1, 2023
1 parent 2b2ef10 commit 6e9d5b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/viasp/api.py
Expand Up @@ -437,7 +437,7 @@ def mark_from_string(model: str, **kwargs) -> None:
connector.mark(model)


def mark_from_file(path: Union[str, list[str]], **kwargs) -> None:
def mark_from_file(path: Union[str, List[str]], **kwargs) -> None:
r"""
Parse a file containing a string of ASP facts and mark them as a model.
Expand Down

0 comments on commit 6e9d5b0

Please sign in to comment.