Standarization: Python files

Signed-off-by: ANT\aljanru <aljanru@amazon.co.uk>
This commit is contained in:
ANT\aljanru
2021-09-05 19:52:11 +02:00
parent c33dd26ff9
commit 4220c52330
178 changed files with 959 additions and 1579 deletions
@@ -270,7 +270,7 @@ class FileManagement:
file_list = FileManagement._find_files(file_names, root_path, search_subdirs)
except RuntimeWarning as w:
assert False, (
w.message
w.args[0]
+ " Please check use of search_subdirs; make sure you are using the correct parent directory."
)
@@ -331,7 +331,7 @@ class FileManagement:
file_list = FileManagement._find_files([target_file, src_file], root_path, search_subdirs)
except RuntimeWarning as w:
assert False, (
w.message
w.args[0]
+ " Please check use of search_subdirs; make sure you are using the correct parent directory."
)