(self, config=None)
| 128 | } |
| 129 | |
| 130 | def __init__(self, config=None): |
| 131 | super().__init__(config) |
| 132 | # 合并用户配置和默认配置 |
| 133 | self.refine_config = {**self.DEFAULT_CONFIG, **(config or {})} |
| 134 | |
| 135 | def process(self, context: ProcessingContext) -> ProcessingResult: |
| 136 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected