Skip to content

Commit

Permalink
Add doc rendering public action
Browse files Browse the repository at this point in the history
  • Loading branch information
kdouda committed Jan 4, 2025
1 parent e737dc8 commit 48534e8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion src/pyrdfrules/common/index/index_actions.py
Original file line number Diff line number Diff line change
@@ -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):

Expand Down
1 change: 0 additions & 1 deletion src/pyrdfrules/common/index/index_transformations.py
Original file line number Diff line number Diff line change
@@ -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):

Expand Down
6 changes: 3 additions & 3 deletions src/pyrdfrules/common/rule/rule/part.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ class RulePart(BaseModel):

graphs: List[Graph]

subject: any
subject: dict

predicate: any
predicate: dict

object: any
object: dict

0 comments on commit 48534e8

Please sign in to comment.