Skip to content

Commit a57b2a4

Browse files
committed
fix circular import
1 parent 5776956 commit a57b2a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cwltool/cwlprov/ro.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
WORKFLOW,
4848
Hasher,
4949
)
50-
from .provenance_profile import ProvenanceProfile
5150

5251

5352
class ResearchObject:
@@ -95,6 +94,8 @@ def initialize_provenance(
9594
run_uuid: Optional[uuid.UUID] = None,
9695
):
9796
"""Hook function allowing calling code to extend the provenance details if needed."""
97+
from .provenance_profile import ProvenanceProfile
98+
9899
return ProvenanceProfile(
99100
research_object=self,
100101
full_name=full_name,

0 commit comments

Comments
 (0)