format code
This commit is contained in:
parent
c6e4b4c9ea
commit
c791745e2a
2 changed files with 6 additions and 9 deletions
|
@ -1,10 +1,7 @@
|
|||
import pytest
|
||||
|
||||
from app.utils import (
|
||||
guard_against_none,
|
||||
guard_against_none_or_empty_str,
|
||||
key_error_silence,
|
||||
)
|
||||
from app.utils import (guard_against_none, guard_against_none_or_empty_str,
|
||||
key_error_silence)
|
||||
|
||||
|
||||
def test_key_error_silence():
|
||||
|
|
|
@ -14,16 +14,16 @@ html_logo = "_static/nuculabs_logo.png"
|
|||
# -- General configuration ---------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||
|
||||
extensions = ['autoapi.extension', "myst_parser"]
|
||||
extensions = ["autoapi.extension", "myst_parser"]
|
||||
|
||||
templates_path = ["_templates"]
|
||||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
||||
|
||||
source_suffix = ['.rst', '.md']
|
||||
source_suffix = [".rst", ".md"]
|
||||
|
||||
# AutoAPI
|
||||
autoapi_type = 'python'
|
||||
autoapi_dirs = ['../app']
|
||||
autoapi_type = "python"
|
||||
autoapi_dirs = ["../app"]
|
||||
|
||||
# -- Options for HTML output -------------------------------------------------
|
||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
||||
|
|
Loading…
Reference in a new issue