(self, *args, **kwargs)
| 164 | "None") |
| 165 | |
| 166 | def __init__(self, *args, **kwargs): |
| 167 | del args, kwargs |
| 168 | # The fields of a `namedtuple` are filled in the `__new__` method. |
| 169 | # `__init__` does not accept parameters. |
| 170 | super(GraphsTuple, self).__init__() |
| 171 | self._validate_none_fields() |
| 172 | |
| 173 | def replace(self, **kwargs): |
| 174 | output = self._replace(**kwargs) |
nothing calls this directly
no test coverage detected