(self, *docs, # type: List[MutationResult]
**kwargs # type: Dict[str, Any]
)
| 27 | |
| 28 | class MutationState: |
| 29 | def __init__(self, *docs, # type: List[MutationResult] |
| 30 | **kwargs # type: Dict[str, Any] |
| 31 | ): |
| 32 | self._sv = set() |
| 33 | if docs: |
| 34 | self.add_results(*docs, **kwargs) |
| 35 | |
| 36 | def add_mutation_token(self, mut_token # type: MutationToken |
| 37 | ) -> None: |
nothing calls this directly
no test coverage detected