Skip to content

Commit

Permalink
Fix enum generation expression
Browse files Browse the repository at this point in the history
  • Loading branch information
oaubert committed Oct 7, 2024
1 parent 5ab2e44 commit fc840b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -2284,7 +2284,7 @@ def generate_enums(self):
# so that they are available in Sphinx-generated doc
symbols = _NL_.join(
[
f" * ``vlc.{cls}.{v.name}`` { "\n".join(e.base_sphinx_format(v.docs)) }"
f""" * ``vlc.{cls}.{v.name}`` { "\n".join(e.base_sphinx_format(v.docs)) }"""
for v in e.vals
]
)
Expand Down

0 comments on commit fc840b8

Please sign in to comment.