Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[sphinx] Fix path to source #2422

Merged
merged 4 commits into from
May 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# Initial formatting of astroid
add5f7b8eba427de9d39caae864bbc6dc37ef980
jacobtylerwalls marked this conversation as resolved.
Show resolved Hide resolved
# Apply black on doc/conf.py
2dd9027054db541871713ef1cb1ae89513d05555
jacobtylerwalls marked this conversation as resolved.
Show resolved Hide resolved
jacobtylerwalls marked this conversation as resolved.
Show resolved Hide resolved
# Black's 2024 style
396f01a15d1cb0351b33654acdeedde64f537a0c
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath("../../"))
sys.path.insert(0, os.path.abspath(".."))

# -- General configuration -----------------------------------------------------

Expand Down
Loading