From 2db7754464c361aa66165988e4afd07ccff08ac4 Mon Sep 17 00:00:00 2001 From: MaskDuck Date: Thu, 18 Apr 2024 22:16:49 +0700 Subject: [PATCH] fix error --- _orangcbot/extensions/fun.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_orangcbot/extensions/fun.py b/_orangcbot/extensions/fun.py index 2fec4fb..8c9ec8a 100644 --- a/_orangcbot/extensions/fun.py +++ b/_orangcbot/extensions/fun.py @@ -26,7 +26,7 @@ class _BattleInvitation: def __eq__(self, a, b): return a.uid1 == b.uid1 and a.uid2 == b.uid2 - def __init__(uid1, uid2): + def __init__(self, uid1, uid2): self.uid1: int = uid1 self.uid2: int = uid2