Skip to content

Commit

Permalink
fixup: Format Python code with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Feb 25, 2024
1 parent 0f25db7 commit 89f9375
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion shazamio/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ def __init__(
self.endpoint_country = endpoint_country

self.http_client = http_client or HTTPClient(
retry_options=ExponentialRetry(attempts=20, max_timeout=60, statuses={500, 502, 503, 504, 429}),
retry_options=ExponentialRetry(
attempts=20, max_timeout=60, statuses={500, 502, 503, 504, 429}
),
)
self.geo_service = GeoService(self.http_client)

Expand Down

0 comments on commit 89f9375

Please sign in to comment.