Skip to content

Commit

Permalink
Fix WDL.resolve_file_import() @dinvlad
Browse files Browse the repository at this point in the history
The pass-through to WDL.Tree.resolve_file_import() was inadvertently omitted.
  • Loading branch information
mlin committed Aug 12, 2019
1 parent c80e14f commit a7eabc5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions WDL/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ async def resolve_file_import(uri: str, path: List[str], importer: Optional[Docu
document (if any), or the process current working directory (otherwise). Failing that, it's
searched in the ``path`` directories (in reverse order).
"""
return await Tree.resolve_file_import(uri, path, importer)


def parse_document(txt: str, version: Optional[str] = None, uri: str = "") -> Document:
Expand Down

0 comments on commit a7eabc5

Please sign in to comment.