We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b64789 commit f334516Copy full SHA for f334516
stumpy/cache.py
@@ -250,9 +250,9 @@ def save(cache_dir=None):
250
else: # pragma: no cover
251
warnings.warn(CACHE_WARNING)
252
253
- if numba.config.CACHE_DIR != '':
+ if numba.config.CACHE_DIR != "":
254
msg = "Found user specified `NUMBA_CACHE_DIR`/`numba.config.CACHE_DIR`. "
255
- msg =+ "The `stumpy` cache files may not be saved/cleared correctly!"
+ msg += "The `stumpy` cache files may not be saved/cleared correctly!"
256
warnings.warn(msg)
257
258
_save(cache_dir)
0 commit comments