Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
osama-ata authored Nov 6, 2024
1 parent 242a317 commit 50d4f86
Showing 1 changed file with 11 additions and 19 deletions.
30 changes: 11 additions & 19 deletions src/siwar/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,16 @@
# src/siwar/models/__init__.py
"""Models package for Siwar API wrapper."""
"""Models package for Siwar API."""

from .core import SearchResult, LexiconEntry, WordForm, Translation, Example, Sense
from .enums import LemmaType, PartOfSpeech, ExampleType
from .core import (
WordForm,
Translation,
Example,
Sense,
SearchResult,
LexiconEntry,
)

__all__ = [
'LemmaType',
'PartOfSpeech',
'ExampleType',
'WordForm',
'Translation',
'Example',
'Sense',
'SearchResult',
'LexiconEntry',
"LemmaType",
"PartOfSpeech",
"ExampleType",
"WordForm",
"Translation",
"Example",
"Sense",
"SearchResult",
"LexiconEntry",
]

0 comments on commit 50d4f86

Please sign in to comment.