comma-fixer / commafixer /src /comma_fixer_interface.py
klasocki's picture
Refactor, introduce CommaFixerInterface and remove duplication
8868222
raw
history blame contribute delete
144 Bytes
from abc import ABC, abstractmethod
class CommaFixerInterface(ABC):
@abstractmethod
def fix_commas(self, s: str) -> str:
pass