1
0
mirror of https://github.com/django/django.git synced 2025-03-04 06:05:02 +00:00

Removed unused clean() method in file-based session.

Unused since its introduction in bcf7e9a9fe037eff4d5dea0cdd8c35104590e1a8.
This commit is contained in:
Mariusz Felisiak 2024-03-12 13:31:22 +01:00 committed by GitHub
parent c925448498
commit 80fe2f4391
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -190,9 +190,6 @@ class SessionStore(SessionBase):
except OSError:
pass
def clean(self):
pass
@classmethod
def clear_expired(cls):
storage_path = cls._get_storage_path()