(self, *args, **kwargs)
| 16 | |
| 17 | @functools.wraps(meth) |
| 18 | def _check(self, *args, **kwargs): |
| 19 | self._check_conn_validity(meth.__name__) |
| 20 | return meth(self, *args, **kwargs) |
| 21 | |
| 22 | return _check |
| 23 |
nothing calls this directly
no test coverage detected
searching dependent graphs…