Add module docstring to precheck module and its main function for improved documentation and clarity

This commit is contained in:
voldemort 2025-07-23 01:48:24 +07:00
parent d6cf10ccaf
commit 003508aabd

View File

@ -1,3 +1,5 @@
"""Module to run the prechecks."""
from custom_functions.prechecks.folder_checks import folder_checks from custom_functions.prechecks.folder_checks import folder_checks
from custom_functions.prechecks.config_file_checks import check_for_config_file from custom_functions.prechecks.config_file_checks import check_for_config_file
from custom_functions.prechecks.database_checks import check_for_sql_database from custom_functions.prechecks.database_checks import check_for_sql_database
@ -5,8 +7,8 @@ from custom_functions.prechecks.cdm_checks import check_for_cdms
def run_precheck(): def run_precheck():
"""Run the prechecks."""
folder_checks() folder_checks()
check_for_config_file() check_for_config_file()
check_for_cdms() check_for_cdms()
check_for_sql_database() check_for_sql_database()
return