Skip to content

Commit 081eeb2

Browse files
authored
Merge pull request #24 from isakruas/fix/workflows
fix: workflows
2 parents 58dc4b5 + 3eca4df commit 081eeb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ecutils/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import os
22

33
# Default value for LRU cache maxsize
4-
LRU_CACHE_MAXSIZE = os.environ.get("LRU_CACHE_MAXSIZE", 1024)
4+
LRU_CACHE_MAXSIZE: int = int(os.environ.get("LRU_CACHE_MAXSIZE", 1024))

0 commit comments

Comments
 (0)