Completion hints for argcomplete
(self, **kwargs: t.Any)
| 3270 | pass # fully opt out of instance_init |
| 3271 | |
| 3272 | def argcompleter(self, **kwargs: t.Any) -> list[str]: |
| 3273 | """Completion hints for argcomplete""" |
| 3274 | return [str(v) for v in self.values or []] |
| 3275 | |
| 3276 | |
| 3277 | class CaselessStrEnum(Enum[G]): |
nothing calls this directly
no outgoing calls
no test coverage detected