Spaces:
Sleeping
Sleeping
File size: 144 Bytes
8868222 |
1 2 3 4 5 6 7 8 |
from abc import ABC, abstractmethod
class CommaFixerInterface(ABC):
@abstractmethod
def fix_commas(self, s: str) -> str:
pass
|