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