Skip to content

Commit 75f6a96

Browse files
committed
chore: add mixin to list of log names for influence.
1 parent daedb18 commit 75f6a96

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

interactions/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from colorama import Fore, Style, init
55

6-
__version__ = "4.0.0"
6+
__version__ = "4.0.1"
77
__repo_url__ = "https://github.com/goverfl0w/discord-interactions"
88
__authors__ = {
99
"current": [

interactions/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
else:
9393
self.automate_sync = True
9494

95-
log_names: list = ["client", "context", "dispatch", "gateway", "http"]
95+
log_names: list = ["client", "context", "dispatch", "gateway", "http", "mixin"]
9696
for logger in log_names:
9797
getLogger(logger).setLevel(log_level)
9898

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
install_requires=requirements,
3232
license="MIT License",
3333
long_description=README,
34-
long_description_content_type="text/markdown",
34+
long_description_content_type="text/x-rst",
3535
url="https://github.com/goverfl0w/discord-interactions",
3636
packages=find_packages(),
3737
python_requires=">=3.8.6",

0 commit comments

Comments
 (0)