Skip to content

Commit

Permalink
Fixes string types
Browse files Browse the repository at this point in the history
  • Loading branch information
evhub committed Feb 20, 2017
1 parent abf41c2 commit f824b52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/cocotest/agnostic/util.coco
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ if sys.version_info > (3, 5):

def args_kwargs_func(args:List[Any]=[], kwargs:Dict[Any, Any]={}) -> None: pass
else:
def args_kwargs_func(args:"List[Any]"=[], kwargs:"Dict[Any, Any]"={}) -> None: pass
def args_kwargs_func(args:"List"=[], kwargs:"Dict"={}) -> None: pass

def anything_func(*args: int, **kwargs: int) -> None: pass

Expand Down

0 comments on commit f824b52

Please sign in to comment.