Skip to content

Commit

Permalink
Drop Python 3.7 in tox
Browse files Browse the repository at this point in the history
  • Loading branch information
Viicos committed Oct 11, 2023
1 parent b515b93 commit e53cd5f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[tox]
envlist =
py37-django32
py{310,311}-django{32,41,42}
py311-django{41,42}
isort
Expand Down
4 changes: 1 addition & 3 deletions zgw_consumers/legacy/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ def fetch_schema(self) -> None:
logger.info("Fetching schema at '%s'", url)
self._schema = schema_fetcher.fetch(url, {"v": "3"})

def pre_request(
self, method: str, url: str, kwargs: Optional[dict] = None
):
def pre_request(self, method: str, url: str, kwargs: Optional[dict] = None):
"""
Add authorization header to requests for APIs without jwt.
"""
Expand Down

0 comments on commit e53cd5f

Please sign in to comment.