(self, t: GraphQLScalarType)
| 900 | predicate: ClassVar[Predicate] = staticmethod(is_custom_scalar_type) |
| 901 | |
| 902 | def render_body(self, t: GraphQLScalarType) -> str: |
| 903 | return super().render_body(t) or "..." |
| 904 | |
| 905 | |
| 906 | @dataclass |
nothing calls this directly
no test coverage detected