Skip to content

Commit 3a1f625

Browse files
chore: formatting
1 parent 3719cf3 commit 3a1f625

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/onebusaway/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
for __name in __all__:
8989
if not __name.startswith("__"):
9090
try:
91-
__locals[__name].__module__ = "onebusaway"
91+
__locals[__name].__module__ = "onebusaway"
9292
except (TypeError, AttributeError):
9393
# Some of our exported symbols are builtins which we can't set attributes for.
9494
pass

tests/test_client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
from onebusaway._constants import RAW_RESPONSE_HEADER
2929
from onebusaway._exceptions import APIStatusError, APITimeoutError, APIResponseValidationError
3030
from onebusaway._base_client import (
31-
DEFAULT_TIMEOUT,
32-
HTTPX_DEFAULT_TIMEOUT,
33-
BaseClient,
34-
make_request_options,
31+
DEFAULT_TIMEOUT,
32+
HTTPX_DEFAULT_TIMEOUT,
33+
BaseClient,
34+
make_request_options,
3535
)
3636

3737
from .utils import update_env

0 commit comments

Comments
 (0)