Updated Inits

This commit is contained in:
Christian Risi
2025-09-30 13:32:37 +02:00
parent 18fc2ba9d8
commit 2fe1ce9e9a
4 changed files with 18 additions and 3 deletions

View File

@@ -1,7 +1,11 @@
from .DelimiterNotFoundException import DelimiterNotFoundException
from .OutOfDictionaryException import OutOfDictionaryException
from .DuplicateWordException import DuplicateWordException
from .SentenceTooLongException import SentenceTooLongException
__all__ = [
"DelimiterNotFoundException",
"OutOfDictionaryException"
"OutOfDictionaryException",
"DuplicateWordException",
"SentenceTooLongException"
]