Skip to content

Commit

Permalink
Updated To Pyro 2
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTeamAlexa authored Nov 28, 2023
1 parent 0643695 commit df43f45
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions AlexaMusic/core/call.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __init__(self):
self.userbot1 = Client(
api_id=config.API_ID,
api_hash=config.API_HASH,
session_name=str(config.STRING1),
session_string=str(config.STRING1),
)
self.one = PyTgCalls(
self.userbot1,
Expand All @@ -83,7 +83,7 @@ def __init__(self):
self.userbot2 = Client(
api_id=config.API_ID,
api_hash=config.API_HASH,
session_name=str(config.STRING2),
session_string=str(config.STRING2),
)
self.two = PyTgCalls(
self.userbot2,
Expand All @@ -92,7 +92,7 @@ def __init__(self):
self.userbot3 = Client(
api_id=config.API_ID,
api_hash=config.API_HASH,
session_name=str(config.STRING3),
session_string=str(config.STRING3),
)
self.three = PyTgCalls(
self.userbot3,
Expand All @@ -101,7 +101,7 @@ def __init__(self):
self.userbot4 = Client(
api_id=config.API_ID,
api_hash=config.API_HASH,
session_name=str(config.STRING4),
session_string=str(config.STRING4),
)
self.four = PyTgCalls(
self.userbot4,
Expand All @@ -110,7 +110,7 @@ def __init__(self):
self.userbot5 = Client(
api_id=config.API_ID,
api_hash=config.API_HASH,
session_name=str(config.STRING5),
session_string=str(config.STRING5),
)
self.five = PyTgCalls(
self.userbot5,
Expand Down

0 comments on commit df43f45

Please sign in to comment.