Source code for compshs.text.base

from abc import ABC


[docs]class BaseText(ABC): """ Base class for text algorithms.""" def __init__(self): pass