You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.
Currently, the data attribute of BlossomResponse is fixed to the type Union[Dict[str, Any], None]. Instead, it should be a generic type parameter so that me can provide more type information for specific endpoints.
Also, most endpoints currently return List[Dict[str, Any]] instead, making the type information misleading.
Currently, the
data
attribute ofBlossomResponse
is fixed to the typeUnion[Dict[str, Any], None]
. Instead, it should be a generic type parameter so that me can provide more type information for specific endpoints.Also, most endpoints currently return
List[Dict[str, Any]]
instead, making the type information misleading.Relevant definitions:
blossom-wrapper/blossom_wrapper/__init__.py
Lines 24 to 26 in 7ccf68a
The text was updated successfully, but these errors were encountered: