Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
illvart committed May 27, 2024
1 parent 627225c commit 2265144
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ds/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ async def start(self) -> None:
user_details += f"\nLast Name: {self.me.last_name}" if self.me.last_name else ""
user_details += f"\nUsername: {self.me.username}" if self.me.username else ""
self.log.info(user_details)
await self.join_us()
await self.follow_us()
done = time_formatter((time() - StartTime) * 1000)
self.log.success(f">> 🔥 USERBOT RUNNING IN {done} !!")
Var.IS_STARTUP = True

async def join_us(self) -> None:
async def follow_us(self) -> None:
with suppress(BaseException):
await self.join_chat(-1001174631272)
await sleep(3)
Expand Down

0 comments on commit 2265144

Please sign in to comment.