mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 01:09:40 +08:00
hyphen_files = [file for file in filepaths if "-" in file] (#2447)
* hyphen_files = [file for file in filepaths if "-" in file] * updating DIRECTORY.md * Rename recursive-quick-sort.py to recursive_quick_sort.py * updating DIRECTORY.md * Rename aho-corasick.py to aho_corasick.py * updating DIRECTORY.md * Rename polynom-for-points.py to polynom_for_points.py * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@ -17,12 +17,17 @@ if space_files:
|
||||
print(f"{len(space_files)} files contain space characters:")
|
||||
print("\n".join(space_files) + "\n")
|
||||
|
||||
hyphen_files = [file for file in filepaths if "-" in file]
|
||||
if hyphen_files:
|
||||
print(f"{len(hyphen_files)} files contain space characters:")
|
||||
print("\n".join(hyphen_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)
|
||||
bad_files = len(upper_files + space_files + hyphen_files + nodir_files)
|
||||
if bad_files:
|
||||
import sys
|
||||
|
||||
|
Reference in New Issue
Block a user