Skip to content

Commit

Permalink
refactor(client): update auth_headers method to return an empty dicti…
Browse files Browse the repository at this point in the history
…onary
  • Loading branch information
Ahmedhossamdev committed Jul 5, 2024
1 parent f267a9c commit 8133b61
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/onebusaway/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,9 @@ def qs(self) -> Querystring:
return Querystring(array_format="repeat")

@property
def auth_headers(self) -> httpx.Auth:
raise NotImplementedError("This auth method has not been implemented yet.")
@override
def auth_headers(self) -> dict[str, str]:
return {}

@property
@override
Expand Down Expand Up @@ -321,8 +322,9 @@ def qs(self) -> Querystring:
return Querystring(array_format="repeat")

@property
def auth_headers(self) -> httpx.Auth:
raise NotImplementedError("This auth method has not been implemented yet.")
@override
def auth_headers(self) -> dict[str, str]:
return {}

@property
@override
Expand Down

0 comments on commit 8133b61

Please sign in to comment.