We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96206da commit 8fa2425Copy full SHA for 8fa2425
CHANGELOG.md
@@ -28,9 +28,9 @@ class Pet(Enum):
28
DOG: int
29
30
# Mypy will now issue a warning if it detects this situation in type stubs:
31
- # Detected enum "Pet" in a type stub with zero members.
32
- # There is a chance this is due to a recent change in the semantics of enum membership.
33
- # If so, use `member = value` to mark an enum member, instead of `member: type
+ # > Detected enum "Pet" in a type stub with zero members.
+ # > There is a chance this is due to a recent change in the semantics of enum membership.
+ # > If so, use `member = value` to mark an enum member, instead of `member: type`
34
35
class Pet(Enum):
36
# As per the specification, you should now do one of the following:
0 commit comments