diff options
author | 2023-05-06 20:09:19 +0100 | |
---|---|---|
committer | 2023-05-31 13:03:54 +0100 | |
commit | ed602405df8e4ddf9e7993e42eea9a5e9afd4856 (patch) | |
tree | 3c2284b9d1ef15fa423875be832207b2a06ca291 /pydis_core/exts | |
parent | Bump action step versions in CI (diff) |
Apply fixes for ruff linting
Diffstat (limited to 'pydis_core/exts')
-rw-r--r-- | pydis_core/exts/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_core/exts/__init__.py b/pydis_core/exts/__init__.py index afd56166..9d59e8ad 100644 --- a/pydis_core/exts/__init__.py +++ b/pydis_core/exts/__init__.py @@ -1,4 +1,4 @@ """Reusable Discord cogs.""" __all__ = [] -__all__ = list(map(lambda module: module.__name__, __all__)) +__all__ = [module.__name__ for module in __all__] |