Use double quotes instead of single quotes (#918)

pull/924/head
Henry Tu 2022-06-08 15:00:56 -04:00 committed by GitHub
parent c1da9edcf0
commit 298d095acf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ def emit_ops(emitter_td: TextEmitter, registry: Registry):
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 [])