Passed
Push — main ( a47b7f...8b0789 )
by Yohann
01:13
created

pincer   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 7
dl 0
loc 16
rs 10
c 0
b 0
f 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
Bug Best Practice introduced by
This seems to re-define the built-in __package__.

It is generally discouraged to redefine built-ins as this makes code very hard to read.

Loading history...
12
__author__ = "Sigmanificient, Arthurdw"
13
__license__ = "MIT"
14
__version__ = "0.0.0.dev"
15
__description__ = "Discord API wrapper rebuild from scratch."
16