Skip to content

Commit

Permalink
Satisfy new ruff linting rules
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisLovering committed Jan 30, 2024
1 parent 96e360b commit c7b6140
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pydis_core/utils/cooldown.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from pydis_core.utils import scheduling
from pydis_core.utils.function import command_wraps

__all__ = ["CommandOnCooldown", "block_duplicate_invocations", "P", "R"]
__all__ = ["CommandOnCooldown", "P", "R", "block_duplicate_invocations"]

_KEYWORD_SEP_SENTINEL = object()

Expand Down
2 changes: 1 addition & 1 deletion pydis_core/utils/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import typing
from collections.abc import Callable, Sequence, Set

__all__ = ["command_wraps", "GlobalNameConflictError", "update_wrapper_globals"]
__all__ = ["GlobalNameConflictError", "command_wraps", "update_wrapper_globals"]


if typing.TYPE_CHECKING:
Expand Down

0 comments on commit c7b6140

Please sign in to comment.