()
| 192 | |
| 193 | |
| 194 | def test_empty_dataclass() -> None: |
| 195 | assert pretty_repr(Empty()) == "Empty()" |
| 196 | assert pretty_repr([Empty()]) == "[Empty()]" |
| 197 | |
| 198 | |
| 199 | class StockKeepingUnit(NamedTuple): |
nothing calls this directly
no test coverage detected
searching dependent graphs…