diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f5bff0fa..a0e99e0b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Brewtils Changelog ================== +3.25.1 +------ +TBD +- Fixed Typehinting parsing for `datetime.datetime` types + 3.25.0 ------ 4/5/2024 diff --git a/brewtils/decorators.py b/brewtils/decorators.py index 433984f9..3025488a 100644 --- a/brewtils/decorators.py +++ b/brewtils/decorators.py @@ -688,7 +688,7 @@ def _parameter_type_hint(method, cmd_parameter): return "Boolean" if type_hint_class in ["", ""]: return "Dictionary" - if type_hint_class.lower() in [""]: + if type_hint_class.lower() in [""]: return "DateTime" if type_hint_class in [""]: return "Bytes"