Skip to content

Commit c81824e

Browse files
committed
linting
1 parent 40c92ec commit c81824e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_delphi_utils_python/delphi_utils/validator/datafetcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,8 @@ def threaded_api_calls(data_source, min_date, max_date,
223223
"""Get data from API for all geo-signal combinations in a threaded way."""
224224
if n_threads > MAX_ALLOWED_THREADS:
225225
n_threads = MAX_ALLOWED_THREADS
226-
warnings.warn(f"Warning: instead of requested thread count, using only {MAX_ALLOWED_THREADS} threads due "
227-
+ "to API resource limitations")
226+
warnings.warn("Warning: instead of requested thread count, using " + \
227+
f"only {MAX_ALLOWED_THREADS} threads due to API resource limitations")
228228

229229
output_dict = dict()
230230
dict_lock = threading.Lock()

0 commit comments

Comments
 (0)