From f48cb7b93c49d2bd6fb19fbcddd2b4be882dee9c Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Thu, 12 Jul 2018 20:25:10 +0100 Subject: [PATCH] allow arbitrary times in Settings (#229) --- pydantic/env_settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pydantic/env_settings.py b/pydantic/env_settings.py index 3246e96..ea4f0a4 100644 --- a/pydantic/env_settings.py +++ b/pydantic/env_settings.py @@ -58,3 +58,4 @@ class BaseSettings(BaseModel): env_prefix = 'APP_' validate_all = True ignore_extra = False + arbitrary_types_allowed = True