You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
383 B
19 lines
383 B
from typing import Optional
|
|
|
|
from ...language import BaseDefaults, Language
|
|
from .stop_words import STOP_WORDS
|
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
|
|
|
|
class ScottishDefaults(BaseDefaults):
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class Scottish(Language):
|
|
lang = "gd"
|
|
Defaults = ScottishDefaults
|
|
|
|
|
|
__all__ = ["Scottish"]
|