Closed CinquilCinquil closed 3 months ago
In ChainOfActionsBase's get_action method there is a missing return. In ActionSpaceBase's get_actions and get_excluded_actions methods have a return type of list[int] but it should be list[ActionBase].
get_action
return
get_actions
get_excluded_actions
list[int]
list[ActionBase]
In ChainOfActionsBase's
get_action
method there is a missingreturn
. In ActionSpaceBase'sget_actions
andget_excluded_actions
methods have a return type oflist[int]
but it should belist[ActionBase]
.