(self, value: t.Any)
| 141 | return [self.serializer.tag(item) for item in value] |
| 142 | |
| 143 | def to_python(self, value: t.Any) -> t.Any: |
| 144 | return tuple(value) |
| 145 | |
| 146 | |
| 147 | class PassList(JSONTag): |
nothing calls this directly
no outgoing calls
no test coverage detected