Skip to content
Snippets Groups Projects
Commit 04d8ed13 authored by u214892's avatar u214892
Browse files

#169 random guess

parent 70c4d556
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,7 @@ for entry in [entry for entry in importlib_resources.contents('examples') if ...@@ -28,6 +28,7 @@ for entry in [entry for entry in importlib_resources.contents('examples') if
not pkg_resources.resource_isdir('examples', entry) not pkg_resources.resource_isdir('examples', entry)
and entry.endswith(".py") and entry.endswith(".py")
and '__init__' not in entry and '__init__' not in entry
and 'demo.py' not in entry
and 'DELETE' not in entry and 'DELETE' not in entry
]: ]:
profile('examples', entry) profile('examples', entry)
...@@ -12,6 +12,7 @@ for entry in [entry for entry in importlib_resources.contents('examples') if ...@@ -12,6 +12,7 @@ for entry in [entry for entry in importlib_resources.contents('examples') if
not pkg_resources.resource_isdir('examples', entry) not pkg_resources.resource_isdir('examples', entry)
and entry.endswith(".py") and entry.endswith(".py")
and '__init__' not in entry and '__init__' not in entry
and 'demo.py' not in entry
and 'DELETE' not in entry and 'DELETE' not in entry
]: ]:
with path('examples', entry) as file_in: with path('examples', entry) as file_in:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment