(cls)
| 1430 | """ |
| 1431 | |
| 1432 | def wrap(cls): |
| 1433 | return _process_class(cls, init, repr, eq, order, unsafe_hash, |
| 1434 | frozen, match_args, kw_only, slots, |
| 1435 | weakref_slot) |
| 1436 | |
| 1437 | # See if we're being called as @dataclass or @dataclass(). |
| 1438 | if cls is None: |
no test coverage detected
searching dependent graphs…