Skip to content

Commit

Permalink
fix: update jishaku
Browse files Browse the repository at this point in the history
  • Loading branch information
ooliver1 committed May 22, 2022
1 parent 806eaa5 commit c30d63e
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 21 deletions.
12 changes: 5 additions & 7 deletions botbase/__init__.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
from logging import NullHandler, getLogger
from typing import NamedTuple, Literal

from typing import Literal, NamedTuple

from .botbase import BotBase, get_handler
from .checks import *
from .emojis import Emojis
from .exceptions import Blacklisted
from .wraps import (
MyContext,
MyInter,
Wrap,
WrappedChannel,
WrappedMember,
WrappedUser,
WrappedThread,
Wrap,
WrappedUser,
)
from .checks import *


__version__ = "1.14.6"
__version__ = "1.14.7"


getLogger(__name__).addHandler(NullHandler())
64 changes: 52 additions & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ooliver-botbase"
version = "1.14.6"
version = "1.14.7"
description = "A personal nextcord bot base package for bots."
authors = ["ooliver1 <[email protected]>"]
license = "MIT"
Expand All @@ -22,7 +22,7 @@ python = "^3.8"
asyncpg = ">=0.25.0<0.26.0"
nextcord = ">=2.0.0-alpha.10<3.0.0"
nextcord-ext-menus = "^1.5.2"
jishaku = "2.3.0"
jishaku = "2.4.0"
psutil = "^5.9.0"

[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit c30d63e

Please sign in to comment.