From 991d66786f7e0abb632c3b0a9389d7af4691f53d Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Wed, 1 May 2024 20:34:26 +0100 Subject: [PATCH] typing --- utils/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/client.py b/utils/client.py index 2d9ef30..5e285fa 100644 --- a/utils/client.py +++ b/utils/client.py @@ -37,7 +37,7 @@ class Bot(commands.Bot): max_messages=5000, case_insensitive=True, ) - if map(int, orm_version.split(".")) >= (0, 3, 1): + if tuple(map(int, orm_version.split("."))) >= (0, 3, 1): self.loop.run_until_complete(registry.create_all()) else: registry.create_all()