mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-05 09:41:37 +00:00
10 lines
301 B
Python
10 lines
301 B
Python
from python.components.gilded_rose import GildedRose, Item
|
|
|
|
|
|
class SulfurasLogic(GildedRose):
|
|
def __init__(self, item: Item):
|
|
super().__init__(item)
|
|
|
|
def update_quality(self):
|
|
# "Sulfuras" does not change in quality or sell_in
|
|
return self.quality, self.sell_in |