Skip to content

Commit

Permalink
Use double quotes instead of single quotes (#918)
Browse files Browse the repository at this point in the history
  • Loading branch information
henrytwo authored Jun 8, 2022
1 parent c1da9ed commit 298d095
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def emit_with_mutating_variants(key, **kwargs):
emit_op(operator, emitter_td, **kwargs)
ns, unqual, overload = operator.triple
# Underscore variant of functional ops should have "functional" part removed.
is_functional_op = overload == 'functional'
is_functional_op = overload == "functional"
emit_op(registry.get_by_triple((ns, unqual + "_", overload if not is_functional_op else "")),
emitter_td,
traits=["IsTrailingUnderscoreInplaceVariant"] if not is_functional_op else [])
Expand Down

0 comments on commit 298d095

Please sign in to comment.