We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c06ff4 commit c3b6db3Copy full SHA for c3b6db3
schema_salad/java_codegen.py
@@ -464,7 +464,7 @@ def type_loader(
464
init="new MapLoader({}, {}, {})".format(
465
i.name,
466
(
467
- f"'{container}'" if container is not None else self.to_java(None)
+ f'"{container}"' if container is not None else self.to_java(None)
468
), # noqa: B907
469
self.to_java(no_link_check),
470
),
@@ -488,7 +488,7 @@ def type_loader(
488
clazz=fqclass,
489
ext="Impl" if not is_abstract else "",
490
container=(
491
- f"'{container}'"
+ f'"{container}"'
492
if container is not None
493
else self.to_java(None) # noqa: B907
494
0 commit comments