Skip to content

Commit 3cad406

Browse files
Case sensitive env variable
1 parent be25e92 commit 3cad406

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pydatalab/src/pydatalab/config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,11 +306,12 @@ def validate_identifier_prefix(cls, v, info):
306306
return v
307307

308308
model_config = SettingsConfigDict(
309-
env_prefix="pydatalab_",
309+
env_prefix="PYDATALAB_",
310310
extra="allow",
311311
env_file=".env",
312312
env_file_encoding="utf-8",
313313
validate_assignment=True,
314+
case_sensitive=False,
314315
)
315316

316317
@classmethod

0 commit comments

Comments
 (0)