13
13
__author__ = 'Pycord Development'
14
14
__license__ = 'MIT'
15
15
__copyright__ = 'Copyright 2015-2021 Rapptz & Copyright 2021-present Pycord Development'
16
- __version__ = '2.0.0-rc.1 '
16
+ __version__ = '2.0.0-b '
17
17
18
18
__path__ = __import__ ('pkgutil' ).extend_path (__path__ , __name__ )
19
19
20
20
import logging
21
21
from typing import NamedTuple , Literal
22
22
23
- from .client import *
24
- from .appinfo import *
25
- from .user import *
26
- from .emoji import *
27
- from .partial_emoji import *
23
+ from . import utils , opus , abc , ui
28
24
from .activity import *
29
- from .channel import *
30
- from .guild import *
31
- from .flags import *
32
- from .member import *
33
- from .message import *
25
+ from .appinfo import *
34
26
from .asset import *
27
+ from .audit_logs import *
28
+ from .bot import *
29
+ from .channel import *
30
+ from .client import *
31
+ from .cog import Cog
32
+ from .colour import *
33
+ from .commands .__init__ import *
34
+ from .components import *
35
+ from .embeds import *
36
+ from .emoji import *
37
+ from .enums import *
35
38
from .errors import *
36
- from .permissions import *
37
- from .role import *
38
39
from .file import *
39
- from .colour import *
40
+ from .flags import *
41
+ from .guild import *
40
42
from .integrations import *
43
+ from .interactions import *
41
44
from .invite import *
42
- from .template import *
43
- from .widget import *
44
- from .object import *
45
- from .reaction import *
46
- from . import utils , opus , abc , ui
47
- from .enums import *
48
- from .embeds import *
45
+ from .member import *
49
46
from .mentions import *
50
- from .shard import *
47
+ from .message import *
48
+ from .object import *
49
+ from .partial_emoji import *
50
+ from .permissions import *
51
51
from .player import *
52
- from .webhook import *
53
- from .voice_client import *
54
- from .audit_logs import *
55
52
from .raw_models import *
56
- from .team import *
57
- from .sticker import *
53
+ from .reaction import *
54
+ from .role import *
55
+ from .scheduled_events import ScheduledEvent , ScheduledEventLocation
56
+ from .shard import *
58
57
from .stage_instance import *
59
- from .interactions import *
60
- from .components import *
58
+ from .sticker import *
59
+ from .team import *
60
+ from .template import *
61
61
from .threads import *
62
- from .bot import *
63
- from .commands . __init__ import *
64
- from .cog import Cog
62
+ from .user import *
63
+ from .voice_client import *
64
+ from .webhook import *
65
65
from .welcome_screen import *
66
- from .scheduled_events import ScheduledEvent , ScheduledEventLocation
66
+ from .widget import *
67
67
68
68
69
69
class VersionInfo (NamedTuple ):
@@ -74,6 +74,6 @@ class VersionInfo(NamedTuple):
74
74
serial : int
75
75
76
76
77
- version_info : VersionInfo = VersionInfo (major = 2 , minor = 0 , micro = 0 , releaselevel = 'candidate ' , serial = 1 )
77
+ version_info : VersionInfo = VersionInfo (major = 2 , minor = 0 , micro = 0 , releaselevel = 'beta ' , serial = 1 )
78
78
79
79
logging .getLogger (__name__ ).addHandler (logging .NullHandler ())
0 commit comments