This commit is contained in:
2025-10-04 19:47:56 +02:00
parent 2b1167b3ce
commit f7ab347316

View File

@@ -158,9 +158,9 @@ def create_linear_directories(input_path, target_depth, current_depth):
# TODO: - add dynamic name input # TODO: - add dynamic name input
# - add docstring # - add docstring
logger.debug( # logger.debug(
f"FUNC: create_linear_directories(entered) VALUES: path='{input_path}', target_depth='{target_depth}', current_depth='{current_depth}'" # f"FUNC: create_linear_directories(entered) VALUES: path='{input_path}', target_depth='{target_depth}', current_depth='{current_depth}'"
) # )
if current_depth > target_depth: if current_depth > target_depth:
return return
@@ -185,9 +185,9 @@ def create_parallel_directories(input_path, target_depth, width):
# TODO: - add dynamic name input # TODO: - add dynamic name input
# - add docstring # - add docstring
logger.debug( # logger.debug(
f"FUNC: create_parallel_directories(entered) VALUES: path='{input_path}', target_depth='{target_depth}', width='{width}'" # f"FUNC: create_parallel_directories(entered) VALUES: path='{input_path}', target_depth='{target_depth}', width='{width}'"
) # )
for i in range(width): for i in range(width):
directory_name = "branch_" + get_standard_name_number(i, get_int_length(width)) directory_name = "branch_" + get_standard_name_number(i, get_int_length(width))