mirror of
https://github.com/TheAlgorithms/Python.git
synced 2026-03-13 09:50:19 +08:00
* fix: Syntax Error lgtm display in matrix/matrix_operation.py.
* Testing for None should use the 'is' operator.
* fix: Too many arguments for string format.
* fix: supress lgtm alert as false positive.
* style: Unnecessary 'pass' statement.
* Revert "fix: Syntax Error lgtm display in matrix/matrix_operation.py."
This reverts commit 4c629b4ce1.
This commit is contained in:
committed by
Christian Clauss
parent
a2b5a90c11
commit
04962c0d17
@@ -307,7 +307,7 @@ class BinomialHeap:
|
||||
# No right subtree corner case
|
||||
# The structure of the tree implies that this should be the bottom root
|
||||
# and there is at least one other root
|
||||
if self.min_node.right == None:
|
||||
if self.min_node.right is None:
|
||||
# Update size
|
||||
self.size -= 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user