Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Avrahami committed Mar 2, 2024
1 parent 43d2ce7 commit 35df020
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def linkcode_resolve(domain, info):
if domain != "py":
return None
try:
package_file = root_dir / (info["module"].replace(".", "/")+ ".py")
package_file = root_dir / (info["module"].replace(".", "/") + ".py")
if not package_file.exists():
package_file = root_dir / info["module"].replace(".", "/") / "__init__.py"
if not package_file.exists():
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# install poetry and the dev-dependencies of the project
python -m pip install poetry==1.8.1
python -m pip install poetry==1.7.1
python -m poetry update --lock
python -m poetry install

0 comments on commit 35df020

Please sign in to comment.