From c218800ec362903a8b3d26d6e263f7cda0a25f17 Mon Sep 17 00:00:00 2001 From: notsatan Date: Fri, 5 Jan 2024 19:49:42 +0545 Subject: [PATCH] Minor: Fix a code typo The pre-gen Python script had a typo in the name of a function Signed-off-by: notsatan --- hooks/post_gen_project.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index 2ddb992..935c0e6 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -18,7 +18,7 @@ ] -def lincese_generator(): +def license_generator(): """ Generates the appropriate license for the template from the given options """ @@ -177,7 +177,7 @@ def print_final_instructions(): runners: Callable[[Optional[Any]], None] = [ - lincese_generator, + license_generator, create_temp_directories, remove_codecov, disable_github_features,