chore(python): add namespace init file

This commit is contained in:
youben11
2022-01-03 12:38:08 +01:00
committed by Ayoub Benaissa
parent f1161f7f6d
commit c276e13d97
4 changed files with 5 additions and 2 deletions

View File

@@ -16,7 +16,8 @@ do
// information.") || print_and_exit $file
done
files=$(find ./compiler/{include,lib,src} -iregex '^.*\.\(py\)$')
# Ignore python package namespace init file
files=$(find ./compiler/{include,lib,src} -iregex '^.*\.\(py\)$' ! -path ./compiler/lib/Bindings/Python/concrete/__init__.py)
for file in $files
do