Added a call to the dump() function in the get_package_files() function.

This commit is contained in:
Paul Gauthier 2024-07-04 15:07:48 -03:00 committed by Paul Gauthier (aider)
parent 98c0621e44
commit 4ad6eef1a3

View file

@ -17,6 +17,7 @@ def get_package_files():
website_files = importlib_resources.files('website')
for path in website_files.rglob('*.md'):
if not any(part.startswith(('OLD', 'tmp')) or part in ('examples', '_posts') for part in path.parts):
dump(path)
yield str(path)