Using underscores in helper function names
When you write a helper function, follow the Python naming convention that signifies a private function and begin the helper function name with _. This helps you:
Find and identify helper functions easily
Ensure that your helper functions will never clash with any current or future hook names