diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 28ef96c9..d3393d7b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -111,7 +111,7 @@ repos: - id: black-jupyter - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.7.4 + rev: v0.8.0 hooks: - id: ruff args: [ --show-fixes, --exit-non-zero-on-fix ] diff --git a/src/ridgeplot/__init__.py b/src/ridgeplot/__init__.py index 74b9fda7..84682ffc 100644 --- a/src/ridgeplot/__init__.py +++ b/src/ridgeplot/__init__.py @@ -31,7 +31,7 @@ from ridgeplot._version import __version__ __all__ = [ - "ridgeplot", - "list_all_colorscale_names", "__version__", + "list_all_colorscale_names", + "ridgeplot", ] diff --git a/src/ridgeplot/datasets/__init__.py b/src/ridgeplot/datasets/__init__.py index adad754e..f6dc73dd 100644 --- a/src/ridgeplot/datasets/__init__.py +++ b/src/ridgeplot/datasets/__init__.py @@ -14,8 +14,8 @@ import pandas as pd __all__ = [ - "load_probly", "load_lincoln_weather", + "load_probly", ]