We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 908fbb2 commit 3d5e950Copy full SHA for 3d5e950
bcorag/custom_types.py
@@ -89,6 +89,7 @@ class OutputTrackerRunsEntry(TypedDict):
89
txt_file: str
90
json_file: str
91
source_node_file: str
92
+ elapsed_time: float
93
version: str
94
95
@@ -98,6 +99,7 @@ def create_output_tracker_runs_entry(
98
99
txt_file: str,
100
json_file: str,
101
source_node_file: str,
102
+ elapsed_time: float,
103
version: str = __version__,
104
) -> OutputTrackerRunsEntry:
105
"""Constructor for the OutputTrackerRunsEntry TypedDict."""
@@ -107,6 +109,7 @@ def create_output_tracker_runs_entry(
107
109
"txt_file": txt_file,
108
110
"json_file": json_file,
111
"source_node_file": source_node_file,
112
+ "elapsed_time": elapsed_time,
113
"version": version,
114
}
115
return return_data
0 commit comments