1
0
mirror of https://github.com/django/django.git synced 2025-04-14 04:22:21 +00:00

refactoring by pep-8 format

This commit is contained in:
almaz amanzholuly 2024-03-24 05:14:10 +05:00
parent cdfea499be
commit afb9176440

View File

@ -1,8 +1,8 @@
"File-based cache backend"
import glob
import os
import pickle
import pathlib
import pickle
import random
import tempfile
import time
@ -10,9 +10,9 @@ import zlib
from hashlib import md5
from django.core.cache.backends.base import DEFAULT_TIMEOUT, BaseCache
from django.core.checks import Warning
from django.core.files import locks
from django.core.files.move import file_move_safe
from django.core.checks import Warning
class FileBasedCache(BaseCache):
cache_suffix = ".djcache"