Skip to content

Commit 87609bb

Browse files
committed
Refactor file classification by updating function to categorize files by type
1 parent 8f5407f commit 87609bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tidyfile/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
from rich import print
44
from rich.markdown import Markdown
5-
from tidyfile.modules.file_classifier import normalize_and_group_files
5+
from tidyfile.modules.file_classifier import categorize_files_by_type
66
from tidyfile.modules.exporter import output_as
77

88

@@ -13,7 +13,7 @@
1313
def sort():
1414
files = os.listdir()
1515

16-
dict2 = normalize_and_group_files(files)
16+
dict2 = categorize_files_by_type(files)
1717
print(dict2)
1818

1919

0 commit comments

Comments
 (0)