added TODO comments

This commit is contained in:
2025-10-02 15:40:36 +02:00
parent f4f5f9bc6b
commit e8ef3c6e53
3 changed files with 31 additions and 13 deletions

View File

@@ -10,6 +10,11 @@ from modules.refit_create import Refit_Create
CONFIG_FILE = "version.cfg"
# TODO: comment the actions done in read_version_config()
# TODO: see the TODO in librefit: move the config file section into the
# libary
def read_version_config():
logger.debug(f"Start read_version_config() with config file: {CONFIG_FILE}")
config = configparser.ConfigParser()
@@ -40,6 +45,10 @@ def read_version_config():
REFIT_VERSION = f"Refit Beta {read_version_config()}"
# ---------------------------ARGPARSE START---------------------------
# TODO: Rework the structure of the argument parsing
# Main Parser
parser = argparse.ArgumentParser(
prog="Refit",