Skip to content

Commit

Permalink
Fixing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Default2882 committed Nov 25, 2024
1 parent 4579b8f commit 3311463
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python-sdk/tests/test_graph_behaviours.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,9 @@ def test_unreachable_graph_nodes(self, is_remote):
)
graph.add_edge(add_two, add_three)
if is_remote:
self.assertRaises(Exception, remote_or_local_graph, graph, is_remote)
self.assertRaises(
Exception, remote_or_local_graph, graph, is_remote
)
else:
graph = remote_or_local_graph(graph, is_remote)
self.assertRaises(
Expand Down

0 comments on commit 3311463

Please sign in to comment.