Remove a no-longer-needed check if enum is available
Not needed since 4d49ba6529
.
This commit is contained in:
parent
65aee1e0c8
commit
7d1c697c30
|
@ -1164,7 +1164,7 @@ def _idval(val, argname, idx, idfn, item, config):
|
|||
return str(val)
|
||||
elif isinstance(val, REGEX_TYPE):
|
||||
return ascii_escaped(val.pattern)
|
||||
elif enum is not None and isinstance(val, enum.Enum):
|
||||
elif isinstance(val, enum.Enum):
|
||||
return str(val)
|
||||
elif (inspect.isclass(val) or inspect.isfunction(val)) and hasattr(val, "__name__"):
|
||||
return val.__name__
|
||||
|
|
Loading…
Reference in New Issue