Skip to content

Commit 74cbdcc

Browse files
authored
docs: remove whitespace characters
1 parent 869ccd6 commit 74cbdcc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/library/enum.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ using function-call syntax::
3737

3838
from enum import Enum
3939

40-
40+
4141
class Color(Enum):
4242
RED = '#FF0000'
4343
GREEN = 65280
4444
BLUE = '#0000FF'
45-
46-
45+
46+
4747
# functional syntax
4848
Color = Enum('Color', [('RED', '#FF0000'), ('GREEN', 65280), ('BLUE', '#0000FF')])
4949

0 commit comments

Comments
 (0)