Total Complexity | 0 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | """ |
||
2 | Pincer library |
||
3 | ==================== |
||
4 | An asynchronous python API wrapper meant to replace discord.py |
||
5 | |||
6 | :copyright: (c) 2021-present Pincer |
||
7 | :license: MIT, see LICENSE for more details. |
||
8 | """ |
||
9 | |||
10 | __title__ = "Pincer library" |
||
11 | __package__ = "Pincer" |
||
1 ignored issue
–
show
|
|||
12 | __author__ = "Sigmanificient, Arthurdw" |
||
13 | __license__ = "MIT" |
||
14 | __version__ = "0.0.0.dev" |
||
15 | __description__ = "Discord API wrapper rebuild from scratch." |
||
16 |
It is generally discouraged to redefine built-ins as this makes code very hard to read.