From a5bad44fac7c38356686380fcc0cccd25814b099 Mon Sep 17 00:00:00 2001 From: Wiktor Garbacz Date: Fri, 31 Mar 2023 11:29:35 -0700 Subject: [PATCH] Fix wrong pytype annotation PiperOrigin-RevId: 520972266 Change-Id: Ib5775e01bf3389e7d123480b3bb3b7a4f33a07b0 --- sandboxed_api/tools/generator2/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandboxed_api/tools/generator2/code.py b/sandboxed_api/tools/generator2/code.py index ec9f5a0..961a0a7 100644 --- a/sandboxed_api/tools/generator2/code.py +++ b/sandboxed_api/tools/generator2/code.py @@ -899,7 +899,7 @@ class Generator(object): def format_template(self, name, functions, related_types, namespaces, embed_dir, embed_name, output_file): # pylint: disable=line-too-long - # type: (Text, List[Function], List[Type], List[Text], Text, Text, Text) -> Text + # type: (Text, List[Function], List[Text], List[Text], Text, Text, Text) -> Text # pylint: enable=line-too-long """Formats arguments into proper interface header file.