mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
11 lines
239 B
Python
11 lines
239 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,
|
|
}
|