(self)
| 76 | """ |
| 77 | |
| 78 | def __init__(self): |
| 79 | self.reset_state() |
| 80 | |
| 81 | # only available on Unix after Python 3.7 |
| 82 | if hasattr(os, 'register_at_fork'): |
| 83 | os.register_at_fork( |
| 84 | after_in_child=lambda: _reset_augmentor_after_fork(weakref.ref(self))) |
| 85 | |
| 86 | def _init(self, params=None): |
| 87 | if params: |
nothing calls this directly
no test coverage detected