File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 9
9
from getpass import getpass
10
10
import re
11
11
import pathlib
12
- import shutil
13
12
14
13
from .settings import config
15
14
from . import errors
22
21
query_log_max_length = 300
23
22
24
23
25
- cache_key = "query_cache" # the key to lookup the query_cache folder in dj.config
24
+ cache_key = "query_cache" # the key to lookup the query_cache folder in dj.config
26
25
27
26
28
27
def get_host_hook (host_input ):
@@ -224,7 +223,7 @@ def connect(self):
224
223
k : v
225
224
for k , v in self .conn_info .items ()
226
225
if k not in ["ssl_input" , "host_input" ]
227
- }
226
+ },
228
227
)
229
228
except client .err .InternalError :
230
229
self ._conn = client .connect (
@@ -240,7 +239,7 @@ def connect(self):
240
239
or k == "ssl"
241
240
and self .conn_info ["ssl_input" ] is None
242
241
)
243
- }
242
+ },
244
243
)
245
244
self ._conn .autocommit (True )
246
245
You can’t perform that action at this time.
0 commit comments