VishwaTechnologiesPvtLtd
new one
a2ff264
from abc import ABC, abstractmethod
class ISentenceCheck(ABC):
@abstractmethod
def IsSentenceCorrect(self, sentence: str) -> bool:
pass