(cls, other)
| 15 | # https://github.com/facebookresearch/hydra/issues/1156 |
| 16 | @classmethod |
| 17 | def __instancecheck__(cls, other): |
| 18 | return "enum" in str(type(other)) |
| 19 | |
| 20 | |
| 21 | class StrEnum(Enum, metaclass=StrEnumMeta): |
nothing calls this directly
no outgoing calls
no test coverage detected