develop #20

Merged
Fabel merged 11 commits from develop into main 2025-04-22 19:12:35 +00:00
1 changed files with 1 additions and 2 deletions
Showing only changes of commit eec232ae53 - Show all commits

View File

@ -69,10 +69,9 @@ def main():
create_tree_structurer()
if args.command == 'display':
if args.verbose:
print(f"Analyzing directory: {args.path}")
try:
structure = get_structure(args.path)
print(f"Analyzing directory: {args.path}")
for line in structure:
print(line)
except FileNotFoundError: