Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
itskekoff committed Jan 14, 2024
1 parent 47f589f commit 26c15cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from loguru import logger
from PIL import Image, ImageSequence

VERSION = "1.3.5"
VERSION = "1.3.4"


class LoggerSetup:
Expand Down Expand Up @@ -254,7 +254,7 @@ async def clone_roles(self):
permissions=role.permissions)
self.mappings["roles"][role] = new_role
if self.debug:
logger.debug("Created role: {} | {}".format(str(new_role.id), new_role.name))
logger.debug("Created role: {} | {}".format(new_role.name, str(new_role.id)))
await asyncio.sleep(self.delay)

async def clone_categories(self, perms: bool = True):
Expand Down

0 comments on commit 26c15cb

Please sign in to comment.