From c795b9dcb5d00239feacea47171486ab0da8a1db Mon Sep 17 00:00:00 2001 From: NimaSarajpoor Date: Sun, 22 Dec 2024 04:36:50 -0500 Subject: [PATCH] Removed bad f-string --- stumpy/config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stumpy/config.py b/stumpy/config.py index 16efe2e2a..481a718fa 100644 --- a/stumpy/config.py +++ b/stumpy/config.py @@ -2,9 +2,10 @@ # Copyright 2019 TD Ameritrade. Released under the terms of the 3-Clause BSD license. # STUMPY is a trademark of TD Ameritrade IP Company, Inc. All rights reserved. -import numpy as np import warnings +import numpy as np + _STUMPY_DEFAULTS = { "STUMPY_THREADS_PER_BLOCK": 512, "STUMPY_MEAN_STD_NUM_CHUNKS": 1, @@ -63,7 +64,7 @@ def _reset(var=None): if not set(var).issubset(config_vars): msg = ( - f"Could not reset the following unrecognized configuration variable(s): " + "Could not reset the following unrecognized configuration variable(s): " + f"{set(var) - set(config_vars)}" ) warnings.warn(msg)