Skip to content

Commit

Permalink
Minor issue fix for the input handler class name.
Browse files Browse the repository at this point in the history
  • Loading branch information
VatsalJagani committed Nov 15, 2024
1 parent 6fb885a commit b3da7b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def _util_generate_input_class_name(input_name):
# Ensure the class name starts with a capital letter
camel_case_name = camel_case_name[0].upper() + camel_case_name[1:]

return camel_case_name
return f"{camel_case_name}Handler"


def modify_original_input_py_file(addon_name, input_name):
Expand Down

0 comments on commit b3da7b8

Please sign in to comment.