Skip to content

Commit 4e10940

Browse files
author
I529010
committed
lint fix
1 parent a21eeb3 commit 4e10940

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

matrix/transitive_closure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def transitive_closure(graph):
1414
... [1, 0, 0, 1],
1515
... [0, 0, 0, 0]
1616
... ]
17-
>>> result = transitiveClosure(graph)
17+
>>> result = transitive_closure(graph)
1818
>>> for row in result:
1919
... print(row)
2020
[1, 1, 1, 1]

0 commit comments

Comments
 (0)