Skip to content

Commit c795b9d

Browse files
committed
Removed bad f-string
1 parent 37add84 commit c795b9d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

stumpy/config.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
# Copyright 2019 TD Ameritrade. Released under the terms of the 3-Clause BSD license.
33
# STUMPY is a trademark of TD Ameritrade IP Company, Inc. All rights reserved.
44

5-
import numpy as np
65
import warnings
76

7+
import numpy as np
8+
89
_STUMPY_DEFAULTS = {
910
"STUMPY_THREADS_PER_BLOCK": 512,
1011
"STUMPY_MEAN_STD_NUM_CHUNKS": 1,
@@ -63,7 +64,7 @@ def _reset(var=None):
6364

6465
if not set(var).issubset(config_vars):
6566
msg = (
66-
f"Could not reset the following unrecognized configuration variable(s): "
67+
"Could not reset the following unrecognized configuration variable(s): "
6768
+ f"{set(var) - set(config_vars)}"
6869
)
6970
warnings.warn(msg)

0 commit comments

Comments
 (0)