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 995d156 commit 812b65cCopy full SHA for 812b65c
.generator/src/generator/cli.py
@@ -121,7 +121,7 @@ def cli(specs, output):
121
api_path = resources_dir / "api" / filename
122
api_path.parent.mkdir(parents=True, exist_ok=True)
123
with api_path.open("w") as fp:
124
- fp.write(api_j2.render(name=name, operations=operations, description=tags_by_name[name]["description"]))
+ fp.write(api_j2.render(name=name, operations=operations, description=tags_by_name[name].get("description")))
125
all_operations.append((name, operations))
126
127
mod_path = resources_dir / "api" / "mod.rs"
0 commit comments