Fixed imports in examples
This commit is contained in:
parent
3cdd6da506
commit
94553b602e
@ -36,6 +36,8 @@ pip install libbot[pycord,speed]
|
||||
### Pyrogram
|
||||
|
||||
```python
|
||||
import sys
|
||||
|
||||
from libbot.pyrogram.classes import PyroClient
|
||||
|
||||
|
||||
@ -47,7 +49,7 @@ def main():
|
||||
except KeyboardInterrupt:
|
||||
print("Shutting down...")
|
||||
finally:
|
||||
exit()
|
||||
sys.exit()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
@ -57,6 +59,9 @@ if __name__ == "__main__":
|
||||
### Pycord
|
||||
|
||||
```python
|
||||
import asyncio
|
||||
from asyncio import AbstractEventLoop
|
||||
|
||||
from discord import Intents
|
||||
from libbot.utils import config_get
|
||||
from libbot.pycord.classes import PycordBot
|
||||
@ -76,7 +81,7 @@ async def main():
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
loop = asyncio.get_event_loop()
|
||||
loop: AbstractEventLoop = asyncio.get_event_loop()
|
||||
loop.run_until_complete(main())
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user