summaryrefslogtreecommitdiff
path: root/networkx/algorithms/bipartite/basic.py
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2020-10-06 10:22:41 -0700
committerJarrod Millman <jarrod.millman@gmail.com>2020-10-06 12:11:32 -0700
commit735e6d856b81989cc12dfa30d8cd8e2ddb7dcead (patch)
treed82c1413052f6fc45db9e856716e69d32e2b038a /networkx/algorithms/bipartite/basic.py
parent3d06eda1ab79b851599edac9e5b58327545c078e (diff)
downloadnetworkx-735e6d856b81989cc12dfa30d8cd8e2ddb7dcead.tar.gz
Format w/ black==20.8b1
Diffstat (limited to 'networkx/algorithms/bipartite/basic.py')
-rw-r--r--networkx/algorithms/bipartite/basic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/networkx/algorithms/bipartite/basic.py b/networkx/algorithms/bipartite/basic.py
index 3c3d4851..7dbbda71 100644
--- a/networkx/algorithms/bipartite/basic.py
+++ b/networkx/algorithms/bipartite/basic.py
@@ -82,7 +82,7 @@ def color(G):
def is_bipartite(G):
- """ Returns True if graph G is bipartite, False if not.
+ """Returns True if graph G is bipartite, False if not.
Parameters
----------