Improve enum.Flag code example (GH-5167)
The code example that demonstrate how to use enum.Flag was missing the import of enum.auto.
This commit is contained in:
parent
bca42186b6
commit
0f31c74fcf
|
@ -654,7 +654,7 @@ value and let :class:`Flag` select an appropriate value.
|
|||
Like :class:`IntFlag`, if a combination of :class:`Flag` members results in no
|
||||
flags being set, the boolean evaluation is :data:`False`::
|
||||
|
||||
>>> from enum import Flag
|
||||
>>> from enum import Flag, auto
|
||||
>>> class Color(Flag):
|
||||
... RED = auto()
|
||||
... BLUE = auto()
|
||||
|
|
Loading…
Reference in New Issue