Skip to content

Commit

Permalink
style: Sort imports
Browse files Browse the repository at this point in the history
Discovered by ruff:

    staged_script/__init__.py:21:11: RUF022 [*] `__all__` is not sorted
       |
    19 |   )
    20 |
    21 |   __all__ = [
       |  ___________^
    22 | |     "StagedScript",
    23 | |     "HelpFormatter",
    24 | |     "RetryStage",
    25 | |     "StageDuration",
    26 | | ]
       | |_^ RUF022
    27 |   __version__ = "2.0.0"
       |
       = help: Apply an isort-style sorting to `__all__`
  • Loading branch information
jmgate committed Dec 17, 2024
1 parent 9b3c7c8 commit 3dd62ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions staged_script/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
# SPDX-License-Identifier: BSD-3-Clause

from .staged_script import (
StagedScript,
HelpFormatter,
RetryStage,
StageDuration,
StagedScript,
)

__all__ = [
"StagedScript",
"HelpFormatter",
"RetryStage",
"StageDuration",
"StagedScript",
]
__version__ = "2.0.0"

0 comments on commit 3dd62ec

Please sign in to comment.