formatting documents

This commit is contained in:
Cristhian Zanforlin Lousa 2023-06-30 13:50:21 -03:00
commit 73023f43d6
2 changed files with 2 additions and 6 deletions

View file

@ -27,11 +27,7 @@ class Edge:
# Get what type of input the target node is expecting
self.matched_type = next(
(
output
for output in self.source_types
if output in self.target_reqs
),
(output for output in self.source_types if output in self.target_reqs),
None,
)
no_matched_type = self.matched_type is None

View file

@ -37,7 +37,7 @@ const NodeToolbarComponent = (props) => {
props.deleteNode(props.data.id);
}}
>
<Trash2 className="w-4 h-4" ></Trash2>
<Trash2 className="w-4 h-4"></Trash2>
</button>
</ShadTooltip>