Docstring for `enum.Enum` is inferred as the enum class itself, instead of `str`. ``` import enum class A(enum.Enum): """Docstring""" reveal_type(A.__doc__) # <string>:7: error: Revealed type is '__main__.A' ``` Tested with mypy 6.2.0, python 3.6.1