diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index a692a0a..f6fe777 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -28,7 +28,7 @@ jobs: - run: pip install pdoc # ADJUST THIS: build your documentation into docs/. # We use a custom build script for pdoc itself, ideally you just run `pdoc -o docs/ ...` here. - - run: pdoc pyrdfrules -o docs/ + - run: pdoc src/pyrdfrules -o docs/ - uses: actions/upload-pages-artifact@v3 with: diff --git a/src/pyrdfrules/common/index/index_actions.py b/src/pyrdfrules/common/index/index_actions.py index 6bb0257..2b5e1d9 100644 --- a/src/pyrdfrules/common/index/index_actions.py +++ b/src/pyrdfrules/common/index/index_actions.py @@ -1,7 +1,6 @@ from pyrdfrules.common.base_actions import BaseActions from pyrdfrules.common.base_transformations import BaseTransformations from pyrdfrules.common.rule.ruleset import Ruleset -from pyrdfrules.index import Index class IndexActions(BaseActions): diff --git a/src/pyrdfrules/common/index/index_transformations.py b/src/pyrdfrules/common/index/index_transformations.py index b55fac5..ca0e6fe 100644 --- a/src/pyrdfrules/common/index/index_transformations.py +++ b/src/pyrdfrules/common/index/index_transformations.py @@ -1,6 +1,5 @@ from pyrdfrules.common.base_transformations import BaseTransformations from pyrdfrules.common.rule.ruleset import Ruleset -from pyrdfrules.index import Index class IndexTransformations(BaseTransformations): diff --git a/src/pyrdfrules/common/rule/rule/part.py b/src/pyrdfrules/common/rule/rule/part.py index f70fb37..676b60e 100644 --- a/src/pyrdfrules/common/rule/rule/part.py +++ b/src/pyrdfrules/common/rule/rule/part.py @@ -7,8 +7,8 @@ class RulePart(BaseModel): graphs: List[Graph] - subject: any + subject: dict - predicate: any + predicate: dict - object: any \ No newline at end of file + object: dict \ No newline at end of file