Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
fix
Browse files
app.py
CHANGED
@@ -90,6 +90,10 @@ async def send_button(ctx):
|
|
90 |
await ctx.send("Click the button below to generate your verification link:",view=view) #
|
91 |
|
92 |
|
|
|
|
|
|
|
|
|
93 |
@bot.event
|
94 |
async def on_ready():
|
95 |
try:
|
|
|
90 |
await ctx.send("Click the button below to generate your verification link:",view=view) #
|
91 |
|
92 |
|
93 |
+
def generate_unique_string(length=6):
|
94 |
+
return secrets.token_hex(length // 2)
|
95 |
+
|
96 |
+
|
97 |
@bot.event
|
98 |
async def on_ready():
|
99 |
try:
|