Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
goFrendiAsgard committed Nov 29, 2023
1 parent 3ff0743 commit f0be2e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zrb/task/base_task/component/base_task_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def __init__(
self.__args: List[Any] = []
self.__kwargs: Mapping[str, Any] = {}

def _set_args(self, args: List[Any]):
self.__args = args
def _set_args(self, args: Iterable[Any]):
self.__args = list(args)

def _set_kwargs(self, kwargs: Mapping[str, Any]):
self.__kwargs = kwargs
Expand Down

0 comments on commit f0be2e8

Please sign in to comment.