Skip to content

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenChen committed Nov 12, 2024
1 parent 74ed3b1 commit 790f394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/database/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ async def clear_changed_roles(self, channel_id: int):
async def add_rule(self, rule_id, title: str, content: str):
return await self._insert('rules', id=rule_id, title=title, description=content)

async def edit_rule(self, rule_id: int, title: str ,content: str):
async def edit_rule(self, rule_id: int, title: str, content: str):
return await self._update('rules', {'title': title, 'description': content}, id=rule_id)

async def delete_rule(self, rule_id: int):
Expand Down

0 comments on commit 790f394

Please sign in to comment.