From 45558fa2bb648c8257d829d86f0f4ff15febf457 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 28 Sep 2024 00:44:05 +0200 Subject: [PATCH] Apply ruff ruile RUF022 RUF022 `__all__` is not sorted --- tabulate/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabulate/__init__.py b/tabulate/__init__.py index da81f72..0296966 100644 --- a/tabulate/__init__.py +++ b/tabulate/__init__.py @@ -23,7 +23,7 @@ def _is_file(f): return isinstance(f, io.IOBase) -__all__ = ["tabulate", "tabulate_formats", "simple_separated_format"] +__all__ = ["simple_separated_format", "tabulate", "tabulate_formats"] try: from .version import version as __version__ # noqa: F401 except ImportError: