Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix black formatting errors #87

Merged
merged 1 commit into from
Aug 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions sphinxcontrib/drawio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,6 @@ def _drawio_export(self, input_abspath, options, out_filename):
if not disable_verbose_electron:
drawio_args.append("--enable-logging")


if disable_dev_shm_usage:
drawio_args.append("--disable-dev-shm-usage")

Expand Down Expand Up @@ -433,9 +432,7 @@ def setup(app: Sphinx) -> Dict[str, Any]:
app.add_config_value(
"drawio_disable_dev_shm_usage", False, "html", ENUM(True, False)
)
app.add_config_value(
"drawio_disable_gpu", False, "html", ENUM(True, False)
)
app.add_config_value("drawio_disable_gpu", False, "html", ENUM(True, False))
app.add_config_value("drawio_no_sandbox", False, "html", ENUM(True, False))

# Add CSS file to the HTML static path for add_css_file
Expand Down