mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
7f04e5cd34
* spelling corrections * review * improved documentation, removed redundant variables, added testing * added type hint * camel case to snake case * spelling fix * review * python --> Python # it is a brand name, not a snake * explicit cast to int * spaces in int list * "!= None" to "is not None" * Update comb_sort.py * various spelling corrections in documentation & several variables naming conventions fix * + char in file name * import dependency - bug fix Co-authored-by: John Law <johnlaw.po@gmail.com>
30 lines
838 B
Python
Executable File
30 lines
838 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os
|
|
from build_directory_md import good_file_paths
|
|
|
|
filepaths = list(good_file_paths())
|
|
assert filepaths, "good_file_paths() failed!"
|
|
|
|
|
|
upper_files = [file for file in filepaths if file != file.lower()]
|
|
if upper_files:
|
|
print(f"{len(upper_files)} files contain uppercase characters:")
|
|
print("\n".join(upper_files) + "\n")
|
|
|
|
space_files = [file for file in filepaths if " " in file]
|
|
if space_files:
|
|
print(f"{len(space_files)} files contain space characters:")
|
|
print("\n".join(space_files) + "\n")
|
|
|
|
nodir_files = [file for file in filepaths if os.sep not in file]
|
|
if nodir_files:
|
|
print(f"{len(nodir_files)} files are not in a directory:")
|
|
print("\n".join(nodir_files) + "\n")
|
|
|
|
bad_files = len(upper_files + space_files + nodir_files)
|
|
if bad_files:
|
|
import sys
|
|
|
|
sys.exit(bad_files)
|