From 7feacc7540fddd31b652c94b8ecd53511584df70 Mon Sep 17 00:00:00 2001 From: MadCat9958 Date: Sun, 4 Jun 2023 18:50:22 +0300 Subject: [PATCH 1/3] fix typo --- setuo.cfg => setup.cfg | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename setuo.cfg => setup.cfg (100%) diff --git a/setuo.cfg b/setup.cfg similarity index 100% rename from setuo.cfg rename to setup.cfg From 241158b87a1215a7e8f16cb55864c0b613eb6147 Mon Sep 17 00:00:00 2001 From: MadCat9958 Date: Sun, 4 Jun 2023 19:04:51 +0300 Subject: [PATCH 2/3] year change --- boticordpy/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boticordpy/__init__.py b/boticordpy/__init__.py index 9e868ea..424b322 100644 --- a/boticordpy/__init__.py +++ b/boticordpy/__init__.py @@ -2,14 +2,14 @@ Boticord API Wrapper ~~~~~~~~~~~~~~~~~~~ A basic wrapper for the BotiCord API. -:copyright: (c) 2022 Marakarka +:copyright: (c) 2023 Marakarka :license: MIT, see LICENSE for more details. """ __title__ = "boticordpy" __author__ = "Marakarka" __license__ = "MIT" -__copyright__ = "Copyright 2022 Marakarka" +__copyright__ = "Copyright 2023 Marakarka" __version__ = "2.2.2" from .client import BoticordClient From 3244e70ebc3726a55f46265f9158d55145445e4e Mon Sep 17 00:00:00 2001 From: MadCat9958 Date: Tue, 6 Jun 2023 21:09:29 +0300 Subject: [PATCH 3/3] None BotLibrary --- boticordpy/types.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/boticordpy/types.py b/boticordpy/types.py index 918f088..a7cea51 100644 --- a/boticordpy/types.py +++ b/boticordpy/types.py @@ -247,6 +247,9 @@ class BotLibrary(IntEnum): OTHER = 12 """Other""" + NONE = 0 + """Bot's library doesn't specified""" + class ResourceStatus(IntEnum): """Status of the project on monitoring"""