Skip to content

Commit

Permalink
Black using updated 2024 formatting rules
Browse files Browse the repository at this point in the history
  • Loading branch information
j1c committed Apr 16, 2024
1 parent 50f0842 commit 13c9773
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions graspologic/pipeline/__init__.py
Expand Up @@ -15,6 +15,7 @@
is to bridge this gap.
"""

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.

Expand Down
6 changes: 3 additions & 3 deletions graspologic/pipeline/embed/omnibus_embedding.py
Expand Up @@ -165,9 +165,9 @@ def omnibus_embedding_pairwise(
for graph in graphs[1:]:
union_graph.add_edges_from(graph.edges())

union_graph_lcc: Union[
nx.Graph, nx.Digraph, nx.OrderedGraph, nx.OrderedDiGraph
] = largest_connected_component(union_graph)
union_graph_lcc: Union[nx.Graph, nx.Digraph, nx.OrderedGraph, nx.OrderedDiGraph] = (
largest_connected_component(union_graph)
)
union_graph_lcc_nodes: Set[Any] = set(list(union_graph_lcc.nodes()))

union_node_ids = np.array(list(union_graph_lcc_nodes))
Expand Down

0 comments on commit 13c9773

Please sign in to comment.