(obj)
| 174 | |
| 175 | |
| 176 | def get_lowername(obj): |
| 177 | if obj is None: |
| 178 | return missing |
| 179 | if isinstance(obj, dict): |
| 180 | return obj.get("name", "").lower() |
| 181 | return obj.name.lower() |
| 182 | |
| 183 | |
| 184 | class UserSchema(Schema): |
nothing calls this directly
no test coverage detected
searching dependent graphs…