Skip to content

Commit

Permalink
Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
diegorusso committed Sep 26, 2024
1 parent 43c6f98 commit 6b7536b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/jit/_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def _dump_footer(
groups: dict[str, _stencils.StencilGroup], symbols: dict[str | None, int]
) -> typing.Iterator[str]:
symbol_mask_size = max(math.ceil(len(symbols) / 32), 1)
yield f"static_assert(SYMBOL_MASK_WORDS >= {symbol_mask_size}, \"SYMBOL_MASK_WORDS too small\");"
yield f'static_assert(SYMBOL_MASK_WORDS >= {symbol_mask_size}, "SYMBOL_MASK_WORDS too small");'
yield ""
yield "typedef struct {"
yield " void (*emit)("
Expand Down

0 comments on commit 6b7536b

Please sign in to comment.