From bab83ac956897092a544065a4659728638461d85 Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Wed, 16 Oct 2024 14:05:15 -0400 Subject: [PATCH] hints --- flopy/mf6/utils/codegen/dfn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flopy/mf6/utils/codegen/dfn.py b/flopy/mf6/utils/codegen/dfn.py index cbf527e84..f6d7c66e0 100644 --- a/flopy/mf6/utils/codegen/dfn.py +++ b/flopy/mf6/utils/codegen/dfn.py @@ -29,7 +29,7 @@ Dfns = Dict[str, "Dfn"] -def _try_parse_bool(value): +def _try_parse_bool(value: Any) -> Any: """ Try to parse a boolean from a string as represented in a DFN file, otherwise return the value unaltered.