Skip to content

Commit

Permalink
Rename learning type to learning scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
enzet committed Aug 1, 2023
1 parent d18d0b2 commit 4c840c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions emmio/learn/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from emmio.language import LanguageConfig


class LearnType(Enum):
class LearnScheme(Enum):
"""Learning scheme."""

SENTENCES = "sentences"
Expand Down Expand Up @@ -37,7 +37,7 @@ class LearnConfig(BaseModel):
is_active: bool = True
"""Whether the learning process is active now."""

type: LearnType
type: LearnScheme
"""Learning scheme."""

sentences: list[dict]
Expand Down

0 comments on commit 4c840c0

Please sign in to comment.