Skip to content

Commit

Permalink
fix bug post create-file
Browse files Browse the repository at this point in the history
the function was wrongly named so was never called ffs

Signed-off-by: Grant Ramsay <[email protected]>
  • Loading branch information
seapagan committed Mar 4, 2024
1 parent 0086fee commit 4ca6858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py_maker/config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __post_init__(self) -> None:
super().__post_init__()
self.template_folder: str = str(self.settings_folder / "template")

def __post_create_file__(self) -> None:
def __post_create_hook__(self) -> None:
"""Automatically called after the settings file is created.
Here, we will ask the user for default settings.
Expand Down

0 comments on commit 4ca6858

Please sign in to comment.