Skip to content

Commit

Permalink
style: pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Dec 2, 2024
1 parent a6f89ff commit dba86d7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/repo_review/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from .html import to_html
from .processor import Result, as_simple_dict, collect_all, process

__all__ = ["main", "Formats", "Show", "Status"]
__all__ = ["Formats", "Show", "Status", "main"]

CODE_THEME = "default"

Expand Down
2 changes: 1 addition & 1 deletion src/repo_review/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from .fixtures import apply_fixtures

__all__ = ["Check", "collect_checks", "is_allowed", "get_check_url"]
__all__ = ["Check", "collect_checks", "get_check_url", "is_allowed"]


def __dir__() -> list[str]:
Expand Down
6 changes: 3 additions & 3 deletions src/repo_review/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
from .ghpath import EmptyTraversable

__all__ = [
"pyproject",
"list_all",
"compute_fixtures",
"apply_fixtures",
"collect_fixtures",
"compute_fixtures",
"list_all",
"pyproject",
]


Expand Down
2 changes: 1 addition & 1 deletion src/repo_review/ghpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from ._compat.importlib.resources.abc import Traversable

__all__ = ["GHPath", "EmptyTraversable"]
__all__ = ["EmptyTraversable", "GHPath"]


def __dir__() -> list[str]:
Expand Down
2 changes: 1 addition & 1 deletion src/repo_review/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"ResultDict",
"as_simple_dict",
"collect_all",
"process",
"md_as_html",
"process",
]


Expand Down
2 changes: 1 addition & 1 deletion src/repo_review/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from .fixtures import apply_fixtures
from .processor import Result

__all__ = ["toml_loads", "compute_check"]
__all__ = ["compute_check", "toml_loads"]


def __dir__() -> list[str]:
Expand Down

0 comments on commit dba86d7

Please sign in to comment.