Skip to content

Commit

Permalink
fix: fix the type hint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanVoxel committed Dec 23, 2024
1 parent 1be7e49 commit 715d10e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tagstudio/src/core/library/alchemy/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ def add_tag(
self,
tag: Tag,
subtag_ids: list[int] | set[int] | None = None,
alias_names: list[int] | set[str] | None = None,
alias_names: list[str] | set[str] | None = None,
alias_ids: list[int] | set[int] | None = None,
) -> Tag | None:
with Session(self.engine, expire_on_commit=False) as session:
Expand Down Expand Up @@ -1049,7 +1049,7 @@ def update_tag(
self,
tag: Tag,
subtag_ids: list[int] | set[int] | None = None,
alias_names: list[int] | set[str] | None = None,
alias_names: list[str] | set[str] | None = None,
alias_ids: list[int] | set[int] | None = None,
) -> None:
"""Edit a Tag in the Library."""
Expand Down

0 comments on commit 715d10e

Please sign in to comment.