From b01c8f2a6256c711472ad2f6bb5a35325e4d5f12 Mon Sep 17 00:00:00 2001 From: Anthony Miyaguchi Date: Tue, 5 Apr 2022 09:25:00 -0700 Subject: [PATCH] fixup: remove stray print statement --- pydantic/env_settings.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pydantic/env_settings.py b/pydantic/env_settings.py index acd2e9399a1..ec38918d91f 100644 --- a/pydantic/env_settings.py +++ b/pydantic/env_settings.py @@ -194,7 +194,6 @@ def __call__(self, settings: BaseSettings) -> Dict[str, Any]: # noqa C901 'env_parse', settings.__config__.json_loads ) try: - print(parse_func) env_val = parse_func(env_val) except ValueError as e: if not allow_json_failure: