Skip to content

Commit 4a7d806

Browse files
committed
Export new converters
1 parent 761974e commit 4a7d806

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

twitchio/ext/commands/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from .bot import AutoBot as AutoBot, Bot as Bot
2626
from .components import *
2727
from .context import *
28+
from .converters import *
2829
from .cooldowns import *
2930
from .core import *
3031
from .exceptions import *
31-
from .converters import *

twitchio/ext/commands/converters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
from .context import Context
3838

3939

40-
__all__ = ("Converter", "UserConverter")
40+
__all__ = ("ColorConverter", "ColourConverter", "Converter", "UserConverter")
4141

4242

4343
_BOOL_MAPPING: dict[str, bool] = {

twitchio/ext/commands/core.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,11 @@
3636
import twitchio
3737
from twitchio.utils import MISSING, unwrap_function
3838

39+
from .converters import CONVERTER_MAPPING, DEFAULT_CONVERTERS, Converter
3940
from .cooldowns import BaseCooldown, Bucket, BucketType, Cooldown, KeyT
4041
from .exceptions import *
4142
from .types_ import CommandOptions, Component_T
4243

43-
from .converters import DEFAULT_CONVERTERS, CONVERTER_MAPPING, Converter
44-
4544

4645
__all__ = (
4746
"Command",

0 commit comments

Comments
 (0)