@@ -751,7 +751,7 @@ def get_session_facts(
751
751
* ,
752
752
min_rating : typing .Optional [float ] = None ,
753
753
request_options : typing .Optional [RequestOptions ] = None ,
754
- ) -> typing . List [ typing . List [ FactsResponse ]] :
754
+ ) -> FactsResponse :
755
755
"""
756
756
get facts for a session
757
757
@@ -768,7 +768,7 @@ def get_session_facts(
768
768
769
769
Returns
770
770
-------
771
- typing.List[typing.List[ FactsResponse]]
771
+ FactsResponse
772
772
The facts for the session.
773
773
774
774
Examples
@@ -789,7 +789,7 @@ def get_session_facts(
789
789
request_options = request_options ,
790
790
)
791
791
if 200 <= _response .status_code < 300 :
792
- return pydantic_v1 .parse_obj_as (typing . List [ typing . List [ FactsResponse ]] , _response .json ()) # type: ignore
792
+ return pydantic_v1 .parse_obj_as (FactsResponse , _response .json ()) # type: ignore
793
793
if _response .status_code == 404 :
794
794
raise NotFoundError (pydantic_v1 .parse_obj_as (types_api_error_ApiError , _response .json ())) # type: ignore
795
795
if _response .status_code == 500 :
@@ -2069,7 +2069,7 @@ async def get_session_facts(
2069
2069
* ,
2070
2070
min_rating : typing .Optional [float ] = None ,
2071
2071
request_options : typing .Optional [RequestOptions ] = None ,
2072
- ) -> typing . List [ typing . List [ FactsResponse ]] :
2072
+ ) -> FactsResponse :
2073
2073
"""
2074
2074
get facts for a session
2075
2075
@@ -2086,7 +2086,7 @@ async def get_session_facts(
2086
2086
2087
2087
Returns
2088
2088
-------
2089
- typing.List[typing.List[ FactsResponse]]
2089
+ FactsResponse
2090
2090
The facts for the session.
2091
2091
2092
2092
Examples
@@ -2107,7 +2107,7 @@ async def get_session_facts(
2107
2107
request_options = request_options ,
2108
2108
)
2109
2109
if 200 <= _response .status_code < 300 :
2110
- return pydantic_v1 .parse_obj_as (typing . List [ typing . List [ FactsResponse ]] , _response .json ()) # type: ignore
2110
+ return pydantic_v1 .parse_obj_as (FactsResponse , _response .json ()) # type: ignore
2111
2111
if _response .status_code == 404 :
2112
2112
raise NotFoundError (pydantic_v1 .parse_obj_as (types_api_error_ApiError , _response .json ())) # type: ignore
2113
2113
if _response .status_code == 500 :
0 commit comments