You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating Sphinx to version 7.2.6, it raises the following warnings.
docstring of liesel.goose.EpochType.from_bytes:9: WARNING: Inline interpreted text or phrase reference start-string without end-string.
docstring of liesel.goose.EpochType.to_bytes:8: WARNING: Inline interpreted text or phrase reference start-string without end-string.
After updating Sphinx to version
7.2.6
, it raises the following warnings.My investigation yielded the following:
The class
EpochType
is derived fromenum.IntEnum
. IntEnum is derived partly fromint
(source code on GitHub).As far as I can see, the methods
from_bytes
andto_bytes
originate from the corresponding methods onint
.I do not understand why sphinx is throwing this warning and/or what I can do about it. I created a question on stackoverflow: https://stackoverflow.com/questions/77914856/sphinx-raises-warnings-for-class-derived-from-intenum-can-i-do-something-about
The text was updated successfully, but these errors were encountered: