Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: rename flag converter file to flag_converter to avoid conflicting with ext.commands flag classes #667

Merged
merged 2 commits into from
Jul 28, 2022
Merged
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
1 change: 1 addition & 0 deletions changelog/667.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Rename internal module ``disnake.ext.commands.flags`` to ``disnake.ext.commands.flag_converter``.
2 changes: 1 addition & 1 deletion disnake/ext/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from .ctx_menus_core import *
from .custom_warnings import *
from .errors import *
from .flags import *
from .flag_converter import *
from .help import *
from .params import *
from .slash_core import *
2 changes: 1 addition & 1 deletion disnake/ext/commands/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

from .context import Context
from .cooldowns import BucketType, Cooldown
from .flags import Flag
from .flag_converter import Flag


__all__ = (
Expand Down
File renamed without changes.