Skip to content

Commit

Permalink
fix dag typing
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Honaker <Michael.Honaker@ibm.com>
  • Loading branch information
HonakerM committed May 2, 2024
1 parent 4275ad8 commit 18e4838
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oper8/dag/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,12 @@ def name(self) -> str:
return self.metadata.get("name")

@property
def manifest(self) -> str:
def manifest(self) -> dict:
"""The resource manifest"""
return self.get_data()

@property
def verify_function(self) -> str:
def verify_function(self) -> Optional[Callable]:
"""The resource manifest"""
return self._verify_function

Expand Down

0 comments on commit 18e4838

Please sign in to comment.