Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
wgifford committed Jan 29, 2025
1 parent 08c508d commit f7244e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/boilerplate/service_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,10 @@ def get_service_handler_class(
config: TSFMConfig, handler_function: str = HandlerFunction.INFERENCE.value
) -> "ServiceHandlerBase":
if handler_function == HandlerFunction.INFERENCE.value:
handler_module_path_identifier = "inference_handler_path"
handler_module_path_identifier = "inference_handler_module_path"
handler_class_name_identifier = "inference_handler_class_name"
elif handler_function == HandlerFunction.TUNING.value:
handler_module_path_identifier = "tuning_handler_path"
handler_module_path_identifier = "tuning_handler_module_path"
handler_class_name_identifier = "tuning_handler_class_name"
else:
raise ValueError(f"Unknown handler_function `{handler_function}`")
Expand Down

0 comments on commit f7244e0

Please sign in to comment.