(self, s: str)
| 3047 | self.error(obj, value) |
| 3048 | |
| 3049 | def from_string(self, s: str) -> str | None: |
| 3050 | if self.allow_none and s == "None": |
| 3051 | return None |
| 3052 | return s |
| 3053 | |
| 3054 | |
| 3055 | class DottedObjectName(ObjectName): |
nothing calls this directly
no outgoing calls
no test coverage detected