Skip to content
This repository was archived by the owner on Feb 7, 2026. It is now read-only.

Commit 78c5a76

Browse files
committed
Remove redundant comments
1 parent e99b7ad commit 78c5a76

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

cogs/economy.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,11 @@ def get_item_names(self) -> list:
4646
"Doctor"
4747
]
4848

49-
# with open(f"{wdir}/database/currency.json", 'r') as f: currency = json.load(f)
5049
with open(f"{wdir}/database/items.json", 'r') as f: items = json.load(f)
5150
with open(f"{wdir}/config/shop.json", 'r') as f: shopitem = json.load(f)
5251
with open(f"{wdir}/database/user_data.json", 'r') as f: userdat = json.load(f)
5352

5453
def save():
55-
# with open(f"{wdir}/database/currency.json", 'w+') as f: json.dump(currency, f, indent=4)
5654
with open(f"{wdir}/database/items.json", 'w+') as f: json.dump(items, f, indent=4)
5755
with open(f"{wdir}/database/user_data.json", 'w+') as f: json.dump(userdat, f, indent=4)
5856

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def save():
6363

6464
#Framework Module Loader
6565
colors = framework.isobot.colors.Colors()
66-
currency = framework.isobot.currency.CurrencyAPI("database/currency.json", "logs/currency.log") # Initialize part of the framework (Currency)
66+
currency = framework.isobot.currency.CurrencyAPI("database/currency.json", "logs/currency.log")
6767
# isobank = framework.isobank.manager.IsoBankManager(f"{wdir}/database/isobank/accounts.json", f"{wdir}/database/isobank/auth.json")
6868
# isobankauth = framework.isobank.authorize.IsobankAuth(f"{wdir}/database/isobank/auth.json", f"{wdir}/database/isobank/accounts.json")
6969

0 commit comments

Comments
 (0)