Skip to content

Commit

Permalink
changed type anotation for filter_names arguement from Tuple[str] to …
Browse files Browse the repository at this point in the history
…Tuple[str, ...] in delete_filters function
  • Loading branch information
esiebomaj committed Dec 7, 2021
1 parent 46d7b2b commit e53f356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sapp/ui/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def import_filter_from_path(database: DB, input_filter_path: Path) -> None:
raise


def delete_filters(database: DB, filter_names: Tuple[str]) -> None:
def delete_filters(database: DB, filter_names: Tuple[str, ...]) -> None:
if len(filter_names) <= 0:
return

Expand Down

0 comments on commit e53f356

Please sign in to comment.