Skip to content

Commit

Permalink
fix: import order in __init__.py is not arbitrary
Browse files Browse the repository at this point in the history
  • Loading branch information
SlowMo24 committed Sep 26, 2024
1 parent 06a4932 commit 31881ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ohsome/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

"""Ohsome API client for Python"""

from .clients import OhsomeClient # noqa
# The order of imports here must remain to prevent circular imports
from .exceptions import OhsomeException # noqa
from .response import OhsomeResponse # noqa
from .clients import OhsomeClient # noqa

0 comments on commit 31881ef

Please sign in to comment.