We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, With an undocumented enum like this
from enum import Enum class MyEnum(Enum): one = 1, two = 2
pdoc 14.5.0 with python 3.12 generates html with some "default" documentation of a Color enum.
Color
The same pdoc version with python 3.10 behaves as expected, i.e. the html docs do not say anything (besides "An enumeration").
Not a sever bug, a bit funny I would say :)
The text was updated successfully, but these errors were encountered:
Thanks! Enums probably just need to be added here:
pdoc/pdoc/doc.py
Lines 587 to 598 in dea7fa0
Sorry, something went wrong.
improve enum rendering, fix mitmproxy#701
5e75f0f
d9438b7
a3d4946
No branches or pull requests
Hi,
With an undocumented enum like this
pdoc 14.5.0 with python 3.12 generates html with some "default" documentation of a
Color
enum.The same pdoc version with python 3.10 behaves as expected, i.e. the html docs do not say anything (besides "An enumeration").
Not a sever bug, a bit funny I would say :)
The text was updated successfully, but these errors were encountered: