Enable checks for unused noqa

This commit is contained in:
Kovid Goyal
2023-01-09 17:28:35 +05:30
parent 69255f7525
commit 836b652f4d
7 changed files with 187 additions and 186 deletions

View File

@@ -498,7 +498,7 @@ def gen_names() -> None:
# The trie
p('typedef struct { uint32_t children_offset; uint32_t match_offset; } word_trie;\n')
all_trie_nodes: List['TrieNode'] = [] # noqa
all_trie_nodes: List['TrieNode'] = []
class TrieNode: