From 634095f3f14af436a0dac3c9f3d85eb8a6132901 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 19:52:09 +0000 Subject: [PATCH] style: auto fixes from pre-commit hooks --- nextcord/ext/menus/menus.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nextcord/ext/menus/menus.py b/nextcord/ext/menus/menus.py index d34e969..be6e99b 100644 --- a/nextcord/ext/menus/menus.py +++ b/nextcord/ext/menus/menus.py @@ -126,8 +126,7 @@ def action(self, value: Callable[..., Coroutine[Any, Any, Any]]): def __call__(self, menu: "Menu", payload: nextcord.RawReactionActionEvent): if self.skip_if is not None and self.skip_if(menu): - async def dummy(): - ... + async def dummy(): ... return dummy() return self._action(menu, payload)