Skip to content

Commit

Permalink
style: format with black
Browse files Browse the repository at this point in the history
  • Loading branch information
nwlandry committed Mar 23, 2023
1 parent e36a9f7 commit 68f042a
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions xgi/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,23 @@
import pandas as pd
from networkx.algorithms import bipartite
from numpy import matrix, ndarray
from scipy.sparse import (coo_array, coo_matrix, csc_array, csc_matrix,
csr_array, csr_matrix, lil_array, lil_matrix)

from .classes import (Hypergraph, SimplicialComplex, maximal_simplices,
set_edge_attributes)
from scipy.sparse import (
coo_array,
coo_matrix,
csc_array,
csc_matrix,
csr_array,
csr_matrix,
lil_array,
lil_matrix,
)

from .classes import (
Hypergraph,
SimplicialComplex,
maximal_simplices,
set_edge_attributes,
)
from .exception import XGIError
from .generators import empty_hypergraph, empty_simplicial_complex
from .linalg import adjacency_matrix, incidence_matrix
Expand Down

0 comments on commit 68f042a

Please sign in to comment.