Skip to content

Commit d60fc03

Browse files
committed
fix: change return type of get_reference_ui_widgets to list[str] for improved type hinting
1 parent 87e5341 commit d60fc03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyoverkiz/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ async def get_reference_ui_profile_names(self) -> list[str]:
710710
return await self.__get("reference/ui/profileNames")
711711

712712
@retry_on_auth_error
713-
async def get_reference_ui_widgets(self) -> JSON:
713+
async def get_reference_ui_widgets(self) -> list[str]:
714714
"""Get a list of all defined UI widgets."""
715715
return await self.__get("reference/ui/widgets")
716716

0 commit comments

Comments
 (0)