We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 58dc4b5 + 3eca4df commit 081eeb2Copy full SHA for 081eeb2
src/ecutils/settings.py
@@ -1,4 +1,4 @@
1
import os
2
3
# Default value for LRU cache maxsize
4
-LRU_CACHE_MAXSIZE = os.environ.get("LRU_CACHE_MAXSIZE", 1024)
+LRU_CACHE_MAXSIZE: int = int(os.environ.get("LRU_CACHE_MAXSIZE", 1024))
0 commit comments