Skip to content

Commit 7ea2acd

Browse files
committed
formatting fixes
1 parent 8b61749 commit 7ea2acd

File tree

2 files changed

+23
-24
lines changed

2 files changed

+23
-24
lines changed

docs/conf.py

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,36 +7,36 @@
77
import sys
88

99
# Add the src directory to the path so we can import the package
10-
sys.path.insert(0, os.path.abspath('../src'))
10+
sys.path.insert(0, os.path.abspath("../src"))
1111

1212
# -- Project information -----------------------------------------------------
1313
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1414

15-
project = 'Runloop Python SDK'
16-
copyright = '2025, Runloop'
17-
author = 'Runloop'
18-
release = '0.68.0'
15+
project = "Runloop Python SDK"
16+
copyright = "2025, Runloop"
17+
author = "Runloop"
18+
release = "0.68.0"
1919

2020
# -- General configuration ---------------------------------------------------
2121
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
2222

2323
extensions = [
24-
'sphinx.ext.autodoc',
25-
'sphinx.ext.napoleon',
26-
'sphinx.ext.intersphinx',
27-
'sphinx.ext.viewcode',
28-
'sphinx_toolbox.more_autodoc.autotypeddict',
29-
'sphinx_autodoc_typehints',
24+
"sphinx.ext.autodoc",
25+
"sphinx.ext.napoleon",
26+
"sphinx.ext.intersphinx",
27+
"sphinx.ext.viewcode",
28+
"sphinx_toolbox.more_autodoc.autotypeddict",
29+
"sphinx_autodoc_typehints",
3030
]
3131

32-
templates_path = ['_templates']
33-
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
32+
templates_path = ["_templates"]
33+
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
3434

3535
# -- Options for HTML output -------------------------------------------------
3636
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
3737

38-
html_theme = 'furo'
39-
html_static_path = ['_static']
38+
html_theme = "furo"
39+
html_static_path = ["_static"]
4040

4141
# -- Extension configuration -------------------------------------------------
4242

@@ -49,17 +49,16 @@
4949

5050
# Autodoc settings
5151
autodoc_default_options = {
52-
'members': None,
53-
'undoc-members': None,
54-
'show-inheritance': None,
52+
"members": None,
53+
"undoc-members": None,
54+
"show-inheritance": None,
5555
}
5656

57-
autodoc_typehints = 'description'
58-
autodoc_typehints_description_target = 'documented'
57+
autodoc_typehints = "description"
58+
autodoc_typehints_description_target = "documented"
5959

6060
# Intersphinx mapping
6161
intersphinx_mapping = {
62-
'python': ('https://docs.python.org/3', None),
63-
'httpx': ('https://www.python-httpx.org', None),
62+
"python": ("https://docs.python.org/3", None),
63+
"httpx": ("https://www.python-httpx.org", None),
6464
}
65-

src/runloop_api_client/sdk/sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def create_from_blueprint_id(
7575
:param blueprint_id: Blueprint ID to create from
7676
:type blueprint_id: str
7777
:param params: See :typeddict:`~runloop_api_client.sdk._types.SDKDevboxExtraCreateParams` for available parameters
78-
:type params:
78+
:type params:
7979
:return: Wrapper bound to the newly created devbox
8080
:rtype: Devbox
8181
"""

0 commit comments

Comments
 (0)