mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 05:43:11 +00:00
13 lines
248 B
Python
13 lines
248 B
Python
|
import os
|
||
|
|
||
|
|
||
|
def setup(app):
|
||
|
current_dir = os.path.abspath(os.path.dirname(__file__))
|
||
|
app.add_html_theme(
|
||
|
'python_docs_theme', current_dir)
|
||
|
|
||
|
return {
|
||
|
'parallel_read_safe': True,
|
||
|
'parallel_write_safe': True,
|
||
|
}
|