(cls, *args, **kwargs)
| 9 | class Spider(metaclass=ABCMeta): |
| 10 | _instance = None |
| 11 | def __new__(cls, *args, **kwargs): |
| 12 | if cls._instance: |
| 13 | return cls._instance |
| 14 | else: |
| 15 | cls._instance = super().__new__(cls) |
| 16 | return cls._instance |
| 17 | @abstractmethod |
| 18 | def init(self,extend=""):pass |
| 19 | @abstractmethod |
nothing calls this directly
no outgoing calls
no test coverage detected