Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions koreanbots/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
from typing import Literal, NamedTuple

from .client import Koreanbots as Koreanbots
from .errors import *
from .http import KoreanbotsRequester as KoreanbotsRequester
from .model import KoreanbotsBot as KoreanbotsBot
from .model import KoreanbotsServer as KoreanbotsServer
from .model import KoreanbotsUser as KoreanbotsUser


class VersionInfo(NamedTuple):
major: int
Expand All @@ -16,7 +9,7 @@ class VersionInfo(NamedTuple):
serial: int


version_info = VersionInfo(3, 1, 0, "final", 0)
version_info = VersionInfo(major=4, minor=0, micro=0, releaselevel="final", serial=0)

__version__ = f"{version_info.major}.{version_info.minor}.{version_info.micro}"

Expand Down
Loading
Loading