diff options
Diffstat (limited to 'requests_cache/backends/sqlite.py')
| -rw-r--r-- | requests_cache/backends/sqlite.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/requests_cache/backends/sqlite.py b/requests_cache/backends/sqlite.py index 29ac083..5ad100a 100644 --- a/requests_cache/backends/sqlite.py +++ b/requests_cache/backends/sqlite.py @@ -27,7 +27,11 @@ class DbCache(BaseCache): """ def __init__( - self, db_path: Union[Path, str] = 'http_cache', use_temp: bool = False, fast_save: bool = False, **kwargs + self, + db_path: Union[Path, str] = 'http_cache', + use_temp: bool = False, + fast_save: bool = False, + **kwargs, ): super().__init__(**kwargs) self.responses = DbPickleDict(db_path, table_name='responses', use_temp=use_temp, fast_save=fast_save, **kwargs) |
