cleanup
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user