模块名称(用于日志和标识)
(self)
| 101 | |
| 102 | @property |
| 103 | def name(self) -> str: |
| 104 | """模块名称(用于日志和标识)""" |
| 105 | return self.__class__.__name__ |
| 106 | |
| 107 | @abstractmethod |
| 108 | def process(self, context: ProcessingContext) -> 'ProcessingResult': |
nothing calls this directly
no outgoing calls
no test coverage detected