Skip to content

Commit 90f32b3

Browse files
auto: format python code
1 parent 2571e36 commit 90f32b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/games.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,9 @@ async def _games_search(self, interaction: discord.Interaction, query: str):
241241

242242
lines = []
243243
for platform, price in prices.items():
244-
msrp = price['msrp']/100 if price['msrp'] else None
245-
curr = price['price']/100 if price['price'] else None
246-
244+
msrp = price['msrp'] / 100 if price['msrp'] else None
245+
curr = price['price'] / 100 if price['price'] else None
246+
247247
if curr and msrp and curr < msrp:
248248
lines.append(f"{platform}: ~~${msrp:.2f}~~ ${curr:.2f}")
249249
elif curr:

0 commit comments

Comments
 (0)