Skip to content

Commit

Permalink
fix typechecker error
Browse files Browse the repository at this point in the history
  • Loading branch information
jfischer committed Jun 20, 2019
1 parent 894a812 commit fd09097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dataworkspaces/utils/lineage_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ class LineageStoreCurrent:
def __init__(self,
lineage_by_resource:Optional[Dict[str, ResourceLineages]]=None):
if lineage_by_resource:
self.lineage_by_resource = lineage_by_resource
self.lineage_by_resource = lineage_by_resource # type: Dict[str, ResourceLineages]
else:
self.lineage_by_resource = {} # type: Dict[str, ResourceLineages]

Expand Down

0 comments on commit fd09097

Please sign in to comment.