Skip to content

Commit

Permalink
Fix after CR
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownPlatypus committed Oct 17, 2023
1 parent b79d155 commit 997677a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion django-stubs/core/cache/backends/filebased.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ from typing import Any, ClassVar
from django.core.cache.backends.base import BaseCache

class FileBasedCache(BaseCache):
cache_suffix: str
cache_suffix: ClassVar[str]
pickle_protocol: ClassVar[int]
def __init__(self, dir: str, params: dict[str, Any]) -> None: ...
2 changes: 2 additions & 0 deletions django-stubs/core/cache/backends/memcached.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ class MemcachedCache(BaseMemcachedCache):

class PyLibMCCache(BaseMemcachedCache):
def __init__(self, server: str | Sequence[str], params: dict[str, Any]) -> None: ...
@property
def client_servers(self) -> list[str]: ...

class PyMemcacheCache(BaseMemcachedCache):
def __init__(self, server: str | Sequence[str], params: dict[str, Any]) -> None: ...

0 comments on commit 997677a

Please sign in to comment.