Skip to content

Commit

Permalink
Merge pull request #24 from isakruas/fix/workflows
Browse files Browse the repository at this point in the history
fix: workflows
  • Loading branch information
isakruas authored Oct 4, 2024
2 parents 58dc4b5 + 3eca4df commit 081eeb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ecutils/settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import os

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

0 comments on commit 081eeb2

Please sign in to comment.