How do I put docstrings on Enums?
For many IDE’s now in 2022, the following will populate intellisense: class MyEnum(Enum): “”” MyEnum purpose and general doc string “”” VALUE = “Value” “”” This is the Value selection. Use this for Values “”” BUILD = “Build” “”” This is the Build selection. Use this for Buildings “”” Example in VSCode: