Skip to content

Commit 8bdcedd

Browse files
committed
🐛 Fix imports and env var name in examples
Signed-off-by: Paillat-dev <[email protected]>
1 parent e09b9ee commit 8bdcedd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/components/stateful_tic_tac_toe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
import random
3-
from typing import Sequence, TypedDict
3+
from typing import TypedDict
44

55
from dotenv import load_dotenv
66

@@ -449,4 +449,4 @@ async def on_ready():
449449
print(f"Bot ready! Logged in as {bot.user}")
450450

451451

452-
bot.run(os.getenv("TOKEN_2"))
452+
bot.run(os.getenv("TOKEN"))

examples/components/stateless_tic_tac_toe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,4 +343,4 @@ async def on_ready():
343343
print(f"Bot ready! Logged in as {bot.user}")
344344

345345

346-
bot.run(os.getenv("TOKEN_2"))
346+
bot.run(os.getenv("TOKEN"))

0 commit comments

Comments
 (0)