We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf8456f commit 5860569Copy full SHA for 5860569
src/python_inspector/settings.py
@@ -18,13 +18,13 @@ class Settings(BaseSettings):
18
"""
19
Reference: https://docs.pydantic.dev/latest/concepts/pydantic_settings/
20
A settings object: use it with an .env file and/or environment variables all prefixed with
21
- PYTHON_INSPECTOR_
+ PYINSP_
22
23
24
model_config = SettingsConfigDict(
25
env_file=".env",
26
env_file_encoding="utf-8",
27
- env_prefix="PYTHON_INSPECTOR_",
+ env_prefix="PYINSP_",
28
case_sensitive=True,
29
extra="allow",
30
)
0 commit comments