Skip to content
This repository was archived by the owner on Aug 11, 2023. It is now read-only.

Commit 7132228

Browse files
committed
Refactor
1 parent 476ad20 commit 7132228

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lessons/python/exercises/exercise-general-week-08-012--01.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ class Brand(Enum):
3636

3737

3838
class Type(Enum):
39-
UNDEFINED= auto()
40-
COAT= auto()
41-
PANTS= auto()
42-
SKIRT= auto()
43-
SHIRT= auto()
44-
HAT= auto()
39+
UNDEFINED = auto()
40+
COAT = auto()
41+
PANTS = auto()
42+
SKIRT = auto()
43+
SHIRT = auto()
44+
HAT = auto()
4545

4646

4747
class Reflector:

0 commit comments

Comments
 (0)