Better linting config (#664)

* Better linting config

* Applies isort on django-stubs, only style changes

* Fixes black and isort compat
This commit is contained in:
Nikita Sobolev
2021-07-04 16:16:43 +03:00
committed by GitHub
parent 552f2ffc0c
commit d5e45db79b
288 changed files with 1158 additions and 1201 deletions

View File

@@ -1,11 +1,9 @@
from collections import OrderedDict
from typing import Any, Callable, Dict, Union
from .backends.base import (
BaseCache as BaseCache,
CacheKeyWarning as CacheKeyWarning,
InvalidCacheBackendError as InvalidCacheBackendError,
)
from .backends.base import BaseCache as BaseCache
from .backends.base import CacheKeyWarning as CacheKeyWarning
from .backends.base import InvalidCacheBackendError as InvalidCacheBackendError
DEFAULT_CACHE_ALIAS: str