Skip to content

Commit 139ac3e

Browse files
authored
Fix missing DEFAULT_PATH import (#606)
1 parent d0d0f0e commit 139ac3e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pydantic_settings/sources/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@
2929
from .providers.secrets import SecretsSettingsSource
3030
from .providers.toml import TomlConfigSettingsSource
3131
from .providers.yaml import YamlConfigSettingsSource
32-
from .types import ENV_FILE_SENTINEL, DotenvType, ForceDecode, NoDecode, PathType, PydanticModel
32+
from .types import DEFAULT_PATH, ENV_FILE_SENTINEL, DotenvType, ForceDecode, NoDecode, PathType, PydanticModel
3333

3434
__all__ = [
3535
'CLI_SUPPRESS',
3636
'ENV_FILE_SENTINEL',
37+
'DEFAULT_PATH',
3738
'AWSSecretsManagerSettingsSource',
3839
'AzureKeyVaultSettingsSource',
3940
'CliExplicitFlag',

0 commit comments

Comments
 (0)