Skip to content

Commit d6c0129

Browse files
committed
pyupgrade: 3.9
1 parent 7adabc9 commit d6c0129

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616
rev: v3.19.0
1717
hooks:
1818
- id: pyupgrade
19-
args: [--py37-plus]
19+
args: [--py39-plus]
2020

2121
- repo: https://github.com/myint/autoflake
2222
rev: 'v2.3.1'

djangosaml2/backends.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
import logging
1717
import warnings
18-
from typing import Any, Optional, Tuple
18+
from typing import Any, Optional
1919

2020
from django.apps import apps
2121
from django.conf import settings
@@ -72,7 +72,7 @@ def _user_lookup_attribute(self) -> str:
7272

7373
def _extract_user_identifier_params(
7474
self, session_info: dict, attributes: dict, attribute_mapping: dict
75-
) -> Tuple[str, Optional[Any]]:
75+
) -> tuple[str, Optional[Any]]:
7676
"""Returns the attribute to perform a user lookup on, and the value to use for it.
7777
The value could be the name_id, or any other saml attribute from the request.
7878
"""
@@ -262,7 +262,7 @@ def get_or_create_user(
262262
attributes: dict,
263263
attribute_mapping: dict,
264264
request,
265-
) -> Tuple[Optional[settings.AUTH_USER_MODEL], bool]:
265+
) -> tuple[Optional[settings.AUTH_USER_MODEL], bool]:
266266
"""Look up the user to authenticate. If he doesn't exist, this method creates him (if so desired).
267267
The default implementation looks only at the user_identifier. Override this method in order to do more complex behaviour,
268268
e.g. customize this per IdP.

djangosaml2/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def add_idp_hinting(request, http_response) -> bool:
205205
return False
206206

207207

208-
@lru_cache()
208+
@lru_cache
209209
def get_csp_handler():
210210
"""Returns a view decorator for CSP."""
211211

0 commit comments

Comments
 (0)