Files
Semyon Proshev 75e9a687e1 PY-24749 Fixed: False positive: Enum __init__: Signature is not compatible to __new__
Update PyInitNewSignatureInspection to ignore `__init__` in `enum.Enum` inheritors.
2017-06-28 19:47:09 +03:00

3 lines
61 B
Python

class Enum(object):
def __new__(cls, value):
pass