Skip to content

Commit 7cb94ff

Browse files
committed
Merge remote-tracking branch 'remotes/origin/65_create_main_endpoint' into 66-implement-caching-on-get_configuration
2 parents 52e9a3f + d9cd16b commit 7cb94ff

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/daq_config_server/client.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
from logging import Logger, getLogger
2-
from typing import Any, TypeVar
2+
from typing import Any
33

44
import requests
55
from cachetools import TTLCache, cached
66

77
from .constants import ENDPOINTS
88

9-
T = TypeVar("T")
10-
BlParamDType = str | int | float | bool
119
CACHE_SIZE = 10
1210
CACHE_TTL = 3600 # seconds
1311

0 commit comments

Comments
 (0)