File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3479,13 +3479,13 @@ def _(item: bytes, arg) -> str:
34793479 return str (item )
34803480
34813481 self .assertEqual (str (Signature .from_callable (A .func )),
3482- '(self, item, arg : int) -> str' )
3482+ '(self, item: int, arg ) -> str' )
34833483 self .assertEqual (str (Signature .from_callable (A ().func )),
3484- '(self, item, arg : int) -> str' )
3484+ '(self, item: int, arg ) -> str' )
34853485 self .assertEqual (str (Signature .from_callable (A .cls_func )),
3486- '(cls, item, arg : int) -> str' )
3486+ '(cls, item: int, arg ) -> str' )
34873487 self .assertEqual (str (Signature .from_callable (A .static_func )),
3488- '(item, arg : int) -> str' )
3488+ '(item: int, arg ) -> str' )
34893489
34903490 def test_method_non_descriptor (self ):
34913491 class Callable :
You can’t perform that action at this time.
0 commit comments