From f7ab347316023983d8c1f4d1eab5aafa76c78913 Mon Sep 17 00:00:00 2001 From: cerberus Date: Sat, 4 Oct 2025 19:47:56 +0200 Subject: [PATCH] cleanup --- refit/src/modules/librefit.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/refit/src/modules/librefit.py b/refit/src/modules/librefit.py index 8e305a2..4674f7d 100644 --- a/refit/src/modules/librefit.py +++ b/refit/src/modules/librefit.py @@ -158,9 +158,9 @@ def create_linear_directories(input_path, target_depth, current_depth): # TODO: - add dynamic name input # - add docstring - logger.debug( - f"FUNC: create_linear_directories(entered) VALUES: path='{input_path}', target_depth='{target_depth}', current_depth='{current_depth}'" - ) + # logger.debug( + # f"FUNC: create_linear_directories(entered) VALUES: path='{input_path}', target_depth='{target_depth}', current_depth='{current_depth}'" + # ) if current_depth > target_depth: return @@ -185,9 +185,9 @@ def create_parallel_directories(input_path, target_depth, width): # TODO: - add dynamic name input # - add docstring - logger.debug( - f"FUNC: create_parallel_directories(entered) VALUES: path='{input_path}', target_depth='{target_depth}', width='{width}'" - ) + # logger.debug( + # f"FUNC: create_parallel_directories(entered) VALUES: path='{input_path}', target_depth='{target_depth}', width='{width}'" + # ) for i in range(width): directory_name = "branch_" + get_standard_name_number(i, get_int_length(width))