Skip to content

Commit

Permalink
UriHolder.uri_set setter: set return type to None
Browse files Browse the repository at this point in the history
  • Loading branch information
Zocker1999NET committed Jul 2, 2023
1 parent 062936a commit 738a362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/entertainment_decider/models/extras/uris.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def uri_set(self) -> Set[str]:
return self._uri_set

@uri_set.setter
def uri_set(self, uri_list: Iterable[Optional[str]]):
def uri_set(self, uri_list: Iterable[Optional[str]]) -> None:
self._clear_uri_set()
self.add_uris(uri_list)

Expand Down

0 comments on commit 738a362

Please sign in to comment.