Skip to content
This repository was archived by the owner on Aug 29, 2021. It is now read-only.

Commit 15e5281

Browse files
committed
[Bug&misc] remove stray print, fix copyright notice
1 parent dddcc40 commit 15e5281

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

disctools/__version_info__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def __repr__(self) -> str:
6363
minor = 4,
6464
patch = 0,
6565
status = status_map["final"],
66+
post = 1
6667
)
6768

6869
__version__ = str(version_info)

disctools/abstractions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
# Copyright (c) 2020 TEEN-BOOM
3+
# Copyright (c) 2020-present WizzyGeek
44

55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

disctools/bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
# Copyright (c) 2020 TEEN-BOOM
3+
# Copyright (c) 2020-present WizzyGeek
44

55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal

disctools/commands.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
# Copyright (c) 2020 TEEN-BOOM
3+
# Copyright (c) 2020-present WizzyGeek
44

55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal
@@ -178,7 +178,6 @@ async def __call__(self, *args, **kwargs):
178178

179179
def __init_subclass__(cls, **kwargs) -> None:
180180
if kwargs.get("_root", False):
181-
print(cls)
182181
strip_doc = {"pre_invoke", "main", "post_invoke", "on_error"}
183182
for i in strip_doc:
184183
i_func = getattr(cls, i, None)

disctools/context.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# MIT License
44

5-
# Copyright (c) 2020 TEEN-BOOM
5+
# Copyright (c) 2020-present WizzyGeek
66

77
# Permission is hereby granted, free of charge, to any person obtaining a copy
88
# of this software and associated documentation files (the "Software"), to deal
@@ -11,7 +11,7 @@
1111
# copies of the Software, and to permit persons to whom the Software is
1212
# furnished to do so, subject to the following conditions:
1313

14-
# The above copyright notice and this permission notice shall be included in all
14+
# The above copyright notice and this permission notice shall be included in all
1515
# copies or substantial portions of the Software.
1616

1717
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

0 commit comments

Comments
 (0)