Skip to content

Commit 8fa2425

Browse files
committed
quote
1 parent 96206da commit 8fa2425

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ class Pet(Enum):
2828
DOG: int
2929

3030
# 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
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`
3434

3535
class Pet(Enum):
3636
# As per the specification, you should now do one of the following:

0 commit comments

Comments
 (0)