mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-04 09:11:39 +00:00
8 lines
171 B
Python
8 lines
171 B
Python
from enum import Enum
|
|
|
|
class Items(Enum):
|
|
aged_brie = "Aged Brie"
|
|
sulfuras = "Sulfuras"
|
|
backstage_passes = "Backstage Passes"
|
|
conjured = "Conjured"
|