Skip to content

Commit

Permalink
print manifests #2
Browse files Browse the repository at this point in the history
  • Loading branch information
balihoo-vbreus committed Apr 16, 2020
1 parent 4f8c501 commit a1d0253
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion blambda/utils/findfunc.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ def find_manifests(function_names):
if any(name in function_names for name in (m.short_name, m.full_name, f'{m.group}/{m.short_name}'))]


def find_all_manifests(root, verbose=False):
def find_all_manifests(root, verbose=True):
"""Find all manifests in a given directory/root"""
json_files = _all_json_files(root)
print(json_files)
manifests = (_load_manifest(json_file, verbose) for json_file in json_files)
return [m for m in manifests if m]

Expand Down

0 comments on commit a1d0253

Please sign in to comment.