Skip to content

Commit

Permalink
ruff formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
xoolive committed Jan 15, 2025
1 parent 3cdef37 commit fa142f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cartes/dataviz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from . import markers

__all__ = ["matplotlib_style", "markers"]
__all__ = ["markers", "matplotlib_style"]

matplotlib_style: Dict[str, Dict[str, Union[str, Any]]] = json.loads(
(Path(__file__).parent / "matplotlib_style.json").read_text()
Expand Down
2 changes: 1 addition & 1 deletion src/cartes/tiles/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ class GoogleTiles(Cache, _GoogleTiles):
pass


__all__ = ["GoogleTiles", "Basemaps"]
__all__ = ["Basemaps", "GoogleTiles"]

0 comments on commit fa142f2

Please sign in to comment.