Skip to content

Commit d0857c5

Browse files
authored
Merge pull request #5069 from sui-feng-cb/medal_shop_fix
Fix: class name MedalShop2_250814 for getattr
1 parent 0c92002 commit d0857c5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

module/shop/shop_medal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def run(self):
281281
continue
282282

283283

284-
class MedalShop_250814(MedalShop2):
284+
class MedalShop2_250814(MedalShop2):
285285
# New UI in 2025-08-14
286286
def _get_medals(self):
287287
"""

module/shop/shop_reward.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from module.shop.shop_core import CoreShop, CoreShop_250814
22
from module.shop.shop_general import GeneralShop, GeneralShop_250814
33
from module.shop.shop_guild import GuildShop, GuildShop_250814
4-
from module.shop.shop_medal import MedalShop2, MedalShop_250814
4+
from module.shop.shop_medal import MedalShop2, MedalShop2_250814
55
from module.shop.shop_merit import MeritShop, MeritShop_250814
66
from module.shop.ui import ShopUI
77

@@ -66,6 +66,6 @@ def run_once(self):
6666
self.device.click_record_clear()
6767
self.shop_tab_250814.set(main=self, upper=2)
6868
self.monthly_shop_nav_250814.set(main=self, left=3)
69-
MedalShop_250814(self.config, self.device).run()
69+
MedalShop2_250814(self.config, self.device).run()
7070

7171
self.config.task_delay(server_update=True)

0 commit comments

Comments
 (0)