Skip to content

Commit

Permalink
Removed bad f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
NimaSarajpoor committed Dec 22, 2024
1 parent 37add84 commit c795b9d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions stumpy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit c795b9d

Please sign in to comment.