Skip to content

Commit a6ee002

Browse files
rchen152copybara-github
authored andcommitted
Silence some pytype errors.
PiperOrigin-RevId: 478627453
1 parent d82bd53 commit a6ee002

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/tensorflow_docs/api_generator/signature.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ class TfSignature(inspect.Signature):
402402
"""A custom version of `inspect.Signature`."""
403403

404404
def __init__(self, parameters, *, return_annotation, parser_config):
405-
super().__init__(parameters, return_annotation=return_annotation)
405+
super().__init__(parameters, return_annotation=return_annotation) # pytype: disable=wrong-arg-types # mapping-is-not-sequence
406406
self.parser_config = parser_config
407407

408408
def replace(self, **kwargs):

0 commit comments

Comments
 (0)