From e83201355985d8d65b7daf98ed41d0e5ed88f02b Mon Sep 17 00:00:00 2001 From: Nick Walker Date: Tue, 2 Apr 2024 13:57:13 -0700 Subject: [PATCH] Fix docstring Small fix to docstring to conform to standards. --- python/semantic_kernel/events/function_invoked_event_args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/semantic_kernel/events/function_invoked_event_args.py b/python/semantic_kernel/events/function_invoked_event_args.py index 1412e734f676..dfe1296f83af 100644 --- a/python/semantic_kernel/events/function_invoked_event_args.py +++ b/python/semantic_kernel/events/function_invoked_event_args.py @@ -24,7 +24,7 @@ class FunctionInvokedEventArgs(KernelEventArgs): kernel_function_metadata (KernelFunctionMetadata): The function that is being executed. arguments (KernelArguments): The arguments that are being passed to the function. function_result (FunctionResult): The result of the function execution. - exception (Optional: Exception): The exception that was raised during the function execution. + exception (Exception, optional): The exception that was raised during the function execution. Flags: updated_arguments (bool): Whether the arguments were updated, default False.