Skip to content

Commit

Permalink
Fix Pydantic schema for Never type
Browse files Browse the repository at this point in the history
  • Loading branch information
kdouda committed Jan 18, 2025
1 parent eea8b8e commit 133876b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pyrdfrules/rdfrules/pipeline.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

from typing import List, Literal, Never, Optional, Union
from typing import List, Literal, Optional, Union
from pydantic import AnyUrl, BaseModel, model_serializer
from enum import Enum

Expand Down Expand Up @@ -57,7 +57,7 @@ class ArbitraryPipelineTask(RDFRulesTaskModel):
"""Raw parameters of the task.
"""

extra: Never
extra: None
"""Extra parameters are not take into account.
"""

Expand Down

0 comments on commit 133876b

Please sign in to comment.