no bug - Remove a pylint warning - variable 'text' is unused r=mstange DONTBUILD

Depends on D105299

Differential Revision: https://phabricator.services.mozilla.com/D105300
This commit is contained in:
Sylvestre Ledru 2021-02-16 21:10:33 +00:00
Родитель ae7e45b76f
Коммит 4fe9680965
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -48,7 +48,7 @@ def gen_h(fd, protocol_file):
fd.write("#define _MacSelectorMap_H_\n")
fd.write("\n@class NSDictionary;\n")
fd.write("\nnamespace mozilla {\nnamespace a11y {\nnamespace mac {\n\n")
for name, text in sections:
for name, _ in sections:
fd.write("NSDictionary* %s();\n\n" % name)
fd.write("}\n}\n}\n")
fd.write("\n#endif\n")