FIX: Missed some empty lines
This commit is contained in:
@@ -14,7 +14,7 @@ class Currency:
|
|||||||
guild_id = str(interaction.guild_id)
|
guild_id = str(interaction.guild_id)
|
||||||
user_id = str(interaction.user.id)
|
user_id = str(interaction.user.id)
|
||||||
earned = random.randint(1, 10)
|
earned = random.randint(1, 10)
|
||||||
|
|
||||||
conn = sqlite3.connect(self.db_path)
|
conn = sqlite3.connect(self.db_path)
|
||||||
cursor = conn.cursor()
|
cursor = conn.cursor()
|
||||||
cursor.execute("""
|
cursor.execute("""
|
||||||
|
@@ -20,7 +20,7 @@ class XP:
|
|||||||
guild_id = str(interaction.guild_id)
|
guild_id = str(interaction.guild_id)
|
||||||
user_id = str(interaction.user.id)
|
user_id = str(interaction.user.id)
|
||||||
earned_xp = random.randint(5, 15)
|
earned_xp = random.randint(5, 15)
|
||||||
|
|
||||||
conn = sqlite3.connect(self.db_path)
|
conn = sqlite3.connect(self.db_path)
|
||||||
cursor = conn.cursor()
|
cursor = conn.cursor()
|
||||||
cursor.execute("""
|
cursor.execute("""
|
||||||
|
Reference in New Issue
Block a user