Fixes: 1) Correct line references in locale files for consistency; Extra: Improve formatting and alignment of string segments for clarity and maintainability;
12 lines
274 B
Python
12 lines
274 B
Python
class UnknownGatewayError(Exception):
|
|
pass
|
|
|
|
|
|
class AbstractGateway:
|
|
@staticmethod
|
|
def process_transaction(transaction) -> None:
|
|
raise NotImplementedError
|
|
|
|
@staticmethod
|
|
def process_callback(transaction) -> None:
|
|
raise NotImplementedError
|