Skip to content

Commit

Permalink
feat(settings): freeze in_mem_psf_cache_size; modified description
Browse files Browse the repository at this point in the history
  • Loading branch information
melisande-c committed Feb 13, 2025
1 parent a327050 commit dac9294
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/microsim/schema/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ class Settings(SimBaseModel, BaseSettings):
description=(
"The maximum number of PSFs that will be stored in the in-memory cache, "
"which follows the LRU caching strategy. Note, this setting will only take "
"effect if it is set as an environment variable, the default is "
f"{IN_MEM_PSF_CACHE_SIZE_DEFAULT}."
"effect by modifying the equivalent environment variable prior to "
f"importing microsim, the default is {IN_MEM_PSF_CACHE_SIZE_DEFAULT}."
),
frozen=True,
)
spectral_bins_per_emission_channel: int = Field(
1,
Expand Down

0 comments on commit dac9294

Please sign in to comment.