Explicitly passing the logger into a function with a type hint (e.g. def my_function(Message: str, logger, **kwargs): throws the following error
"InvalidPayloadError Failed to run AUTO_PATH Action(functions=[<function my_function at 0x7f5ea1e5f0d0>], paths=[], queues=[]) due to TypeError Type of logger should be <class 'lpipe.logging.LPLogger'> not <class 'NoneType'>."
Explicitly passing the logger into a function with a type hint (e.g.
def my_function(Message: str, logger, **kwargs):throws the following error