Skip to content

Commit

Permalink
Move generated pydantic schema from main namespace, it was never deli…
Browse files Browse the repository at this point in the history
…vered
  • Loading branch information
kdouda committed Jan 18, 2025
1 parent 133876b commit 837a4b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/pyrdfrules/rdfrules/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ def serialize_model(self):

result = {'name': self.name, 'parameters': parameters}

if self.extraParameters is not None and len(self.extraParameters) > 0:
result.update(self.extraParameters)
if self.extra is not None and len(self.extra) > 0:
result.update(self.extra)

return result
pass
Expand Down

0 comments on commit 837a4b0

Please sign in to comment.