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
Across the SDK in different places, the use of typing callable is wrong if it was meant to use Callable. For example, herepredictor_cls signature is defined as callable[string, sagemaker.session.Session] and was used like this. If normal Callable was meant (which should be unless specified otherwise) then the last type is the returnType so it should be corrected as something like Callable[[string, sagemaker.session.Session], Any].
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Across the SDK in different places, the use of typing
callable
is wrong if it was meant to useCallable
. For example, herepredictor_cls
signature is defined ascallable[string, sagemaker.session.Session]
and was used like this. If normalCallable
was meant (which should be unless specified otherwise) then the last type is thereturnType
so it should be corrected as something likeCallable[[string, sagemaker.session.Session], Any]
.The text was updated successfully, but these errors were encountered: