Skip to content

Commit c8b8cb6

Browse files
committed
only modify src/metrax/logging
1 parent 8183e0c commit c8b8cb6

File tree

5 files changed

+28
-207
lines changed

5 files changed

+28
-207
lines changed

docs/conf.py

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -18,61 +18,61 @@
1818
import sys
1919

2020
# Import local version of metrax.
21-
sys.path.insert(0, os.path.abspath("../src"))
21+
sys.path.insert(0, os.path.abspath('../src'))
2222

2323
# -- Project information
2424

25-
project = "metrax"
26-
copyright = "2025, The metrax Authors"
27-
author = "The metrax Authors"
25+
project = 'metrax'
26+
copyright = '2025, The metrax Authors'
27+
author = 'The metrax Authors'
2828

29-
release = ""
30-
version = ""
29+
release = ''
30+
version = ''
3131

3232

3333
# -- General configuration
3434

3535
extensions = [
36-
"sphinx.ext.duration",
37-
"sphinx.ext.doctest",
38-
"sphinx.ext.intersphinx",
39-
"sphinx.ext.napoleon",
40-
"sphinx_rtd_theme",
41-
"sphinx.ext.autodoc",
42-
"sphinx.ext.autosummary",
36+
'sphinx.ext.duration',
37+
'sphinx.ext.doctest',
38+
'sphinx.ext.intersphinx',
39+
'sphinx.ext.napoleon',
40+
'sphinx_rtd_theme',
41+
'sphinx.ext.autodoc',
42+
'sphinx.ext.autosummary',
4343
]
4444

4545
intersphinx_mapping = {
46-
"python": ("https://docs.python.org/3/", None),
47-
"sphinx": ("https://www.sphinx-doc.org/en/master/", None),
46+
'python': ('https://docs.python.org/3/', None),
47+
'sphinx': ('https://www.sphinx-doc.org/en/master/', None),
4848
}
49-
intersphinx_disabled_domains = ["std"]
49+
intersphinx_disabled_domains = ['std']
5050

51-
templates_path = ["_templates"]
51+
templates_path = ['_templates']
5252

5353
# -- Options for HTML output
5454

55-
html_theme = "sphinx_rtd_theme"
55+
html_theme = 'sphinx_rtd_theme'
5656
html_theme_options = {
57-
"collapse_navigation": False,
58-
"navigation_depth": 2,
57+
'collapse_navigation': False,
58+
'navigation_depth': 2,
5959
}
60-
html_static_path = ["static"]
60+
html_static_path = ['static']
6161
html_js_files = [
62-
"custom.js",
62+
'custom.js',
6363
]
6464

6565
# -- Options for EPUB output
66-
epub_show_urls = "footnote"
66+
epub_show_urls = 'footnote'
6767

6868

6969
# -- Extension configuration
7070

71-
autodoc_member_order = "bysource"
71+
autodoc_member_order = 'bysource'
7272

7373
autodoc_default_options = {
74-
"members": None,
75-
"undoc-members": True,
76-
"show-inheritance": True,
77-
"special-members": "__call__, __init__",
74+
'members': None,
75+
'undoc-members': True,
76+
'show-inheritance': True,
77+
'special-members': '__call__, __init__',
7878
}

logging/__init__.py

Lines changed: 0 additions & 21 deletions
This file was deleted.

logging/protocol.py

Lines changed: 0 additions & 30 deletions
This file was deleted.

logging/tensorboardbackend.py

Lines changed: 0 additions & 56 deletions
This file was deleted.

logging/wandbbackend.py

Lines changed: 0 additions & 72 deletions
This file was deleted.

0 commit comments

Comments
 (0)