Commit 83c8675e authored by Yury Selivanov's avatar Yury Selivanov Committed by GitHub

bpo-32436: Remove a redundant assert (#5275)

parent d83671e9
......@@ -1116,7 +1116,6 @@ hamt_node_bitmap_find(PyHamtNode_Bitmap *self,
}
idx = hamt_bitindex(self->b_bitmap, bit);
assert(idx >= 0);
key_idx = idx * 2;
val_idx = key_idx + 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment