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
|
# 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))
|
||||||
|
|||||||
Reference in New Issue
Block a user