Add _build_params call on reset
This commit is contained in:
parent
bcebd5b7fe
commit
6dd5b259c4
1 changed files with 3 additions and 1 deletions
|
|
@ -2,7 +2,8 @@ import ast
|
|||
import inspect
|
||||
import types
|
||||
from enum import Enum
|
||||
from typing import TYPE_CHECKING, Any, Callable, Coroutine, Dict, List, Optional
|
||||
from typing import (TYPE_CHECKING, Any, Callable, Coroutine, Dict, List,
|
||||
Optional)
|
||||
|
||||
from loguru import logger
|
||||
|
||||
|
|
@ -540,6 +541,7 @@ class Vertex:
|
|||
self._built_result = UnbuiltResult()
|
||||
self.artifacts = {}
|
||||
self.steps_ran = []
|
||||
self._build_params()
|
||||
|
||||
def build_inactive(self):
|
||||
# Just set the results to None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue