Introduce NEXT

This commit is contained in:
henryruhs
2025-01-04 13:23:00 +01:00
parent d4fba8421f
commit efc49c367a
2 changed files with 2 additions and 2 deletions

View File

@@ -130,7 +130,7 @@ def create_directory(directory_path : str) -> bool:
def list_directory(directory_path : str) -> Optional[List[File]]:
if is_directory(directory_path):
file_paths = sorted(os.listdir(directory_path))
files: List[File] = []
files : List[File] = []
for file_path in file_paths:
file_name, file_extension = os.path.splitext(file_path)