Skip to content

Commit 1888d28

Browse files
committed
remove unsupported type annotation
1 parent 8cde68a commit 1888d28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pykeepass/entry.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def tags(self) -> list[str]:
251251
return val.replace(',', ';').split(';') if val else []
252252

253253
@tags.setter
254-
def tags(self, value: str|list, sep=';'):
254+
def tags(self, value, sep=';'):
255255
# Accept both str or list
256256
v = sep.join(value if isinstance(value, list) else [value])
257257
return self._set_subelement_text('Tags', v)

0 commit comments

Comments
 (0)