# -*- coding: utf-8 -*- # !/usr/bin/env python import logging from typing import TYPE_CHECKING from apps.web.core.payment import PaymentGateway if TYPE_CHECKING: pass logger = logging.getLogger(__name__) class ManualPaymentGateway(PaymentGateway): def __init__(self, app, gateway_type): super(ManualPaymentGateway, self).__init__(app) self.__gateway_type__ = gateway_type def __repr__(self): return '' % ( str(self.occupantId))