Skip to content

Commit

Permalink
chore: rename flag converter file to flag_converter to avoid conflict…
Browse files Browse the repository at this point in the history
…ing with ext.commands flag classes (#667)
  • Loading branch information
onerandomusername authored Jul 28, 2022
1 parent c1c702f commit cddcd69
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
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.

0 comments on commit cddcd69

Please sign in to comment.