darabos commited on
Commit
cfc0b8a
·
1 Parent(s): 210209c

tuple[str, str] instead of (str, str).

Browse files
lynxkite-graph-analytics/src/lynxkite_graph_analytics/core.py CHANGED
@@ -162,7 +162,7 @@ def disambiguate_edges(ws: workspace.Workspace):
162
 
163
 
164
  # Outputs are tracked by node ID and output ID.
165
- Outputs = dict[(str, str), typing.Any]
166
 
167
 
168
  @ops.register_executor(ENV)
 
162
 
163
 
164
  # Outputs are tracked by node ID and output ID.
165
+ Outputs = dict[tuple[str, str], typing.Any]
166
 
167
 
168
  @ops.register_executor(ENV)