Skip to content
Snippets Groups Projects
Commit e159595f authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

six moves

parent 5a5c85ce
No related branches found
No related tags found
No related merge requests found
...@@ -406,7 +406,7 @@ def coerce(*t_args, **t_kwargs): ...@@ -406,7 +406,7 @@ def coerce(*t_args, **t_kwargs):
def argify(args): def argify(args):
return [_do_if_not_type(argument, typedescr) \ return [_do_if_not_type(argument, typedescr) \
for argument, typedescr in itertools.zip_longest(args, t_args)] for argument, typedescr in six.moves.zip_longest(args, t_args)]
t_retarg = t_kwargs.get('returns', None) t_retarg = t_kwargs.get('returns', None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment