Skip to content

Commit 8c44a9d

Browse files
committed
Merge branch 'dekudeals' of https://github.com/rNintendoSwitch/MechaBowser into dekudeals
2 parents 3c75d61 + 36c1a25 commit 8c44a9d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

modules/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ async def _update_cache(self, interaction: discord.Interaction):
810810
return await interaction.channel.send(
811811
f'<@{interaction.user.id}> Syncronization completed. Took {timeToComplete}'
812812
)
813-
813+
814814
@update_group.command(name='gamedb', description='Sync the games database with GiantBomb')
815815
@app_commands.default_permissions(view_audit_log=True)
816816
async def _update_game_db(self, interaction: discord.Interaction):

modules/games.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ async def _games_info(self, interaction: discord.Interaction):
433433
embed.add_field(name=f'Last Sync', value=f'<t:{last_sync}:R>', inline=False)
434434

435435
return await interaction.followup.send(embed=embed)
436-
436+
437437
# called by core.py
438438
async def games_sync(self, interaction: discord.Interaction):
439439
'''Force a database sync'''
@@ -444,7 +444,6 @@ async def games_sync(self, interaction: discord.Interaction):
444444
return await interaction.edit_original_response(content=message)
445445

446446

447-
448447
async def setup(bot):
449448
await bot.add_cog(Games(bot))
450449
logging.info('[Extension] Games module loaded')

0 commit comments

Comments
 (0)