File size: 153 Bytes
a2ff264
 
 
 
 
 
 
1
2
3
4
5
6
7
from abc import ABC, abstractmethod

class ISentenceCheck(ABC):

    @abstractmethod
    def IsSentenceCorrect(self, sentence: str) -> bool:
        pass