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 37add84 commit c795b9dCopy full SHA for c795b9d
stumpy/config.py
@@ -2,9 +2,10 @@
2
# Copyright 2019 TD Ameritrade. Released under the terms of the 3-Clause BSD license.
3
# STUMPY is a trademark of TD Ameritrade IP Company, Inc. All rights reserved.
4
5
-import numpy as np
6
import warnings
7
+import numpy as np
8
+
9
_STUMPY_DEFAULTS = {
10
"STUMPY_THREADS_PER_BLOCK": 512,
11
"STUMPY_MEAN_STD_NUM_CHUNKS": 1,
@@ -63,7 +64,7 @@ def _reset(var=None):
63
64
65
if not set(var).issubset(config_vars):
66
msg = (
- f"Could not reset the following unrecognized configuration variable(s): "
67
+ "Could not reset the following unrecognized configuration variable(s): "
68
+ f"{set(var) - set(config_vars)}"
69
)
70
warnings.warn(msg)
0 commit comments