Skip to content

Commit

Permalink
Bump Ruff to 0.8
Browse files Browse the repository at this point in the history
Over the years Ruff became a much more solid choice for projects. It's
about time we update it.
  • Loading branch information
ikalnytskyi committed Dec 24, 2024
1 parent 8257722 commit b8f23b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ scripts.run = "python -m pytest {args:-vv}"

[tool.hatch.envs.lint]
detached = true
dependencies = ["ruff == 0.2.*"]
dependencies = ["ruff == 0.8.*"]
scripts.check = ["ruff check {args:.}", "ruff format --check --diff {args:.}"]
scripts.fmt = ["ruff check --fix {args:.}", "ruff format {args:.}"]

Expand Down
2 changes: 1 addition & 1 deletion src/holocron/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

from ._core import Application, Item, WebSiteItem, create_app

__all__ = ["Application", "create_app", "Item", "WebSiteItem"]
__all__ = ["Application", "Item", "WebSiteItem", "create_app"]
2 changes: 1 addition & 1 deletion src/holocron/_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .factories import create_app
from .items import Item, WebSiteItem

__all__ = ["Application", "create_app", "Item", "WebSiteItem"]
__all__ = ["Application", "Item", "WebSiteItem", "create_app"]

0 comments on commit b8f23b5

Please sign in to comment.