refactor: Replace list() and dict() calls with literals (#7198)

This commit is contained in:
Caeden
2022-10-15 02:07:03 +01:00
committed by GitHub
parent dcca5351c9
commit 6e69181d1f
10 changed files with 14 additions and 14 deletions

View File

@ -9,7 +9,7 @@ class Heap:
def __init__(self, key: Callable | None = None) -> None:
# Stores actual heap items.
self.arr: list = list()
self.arr: list = []
# Stores indexes of each item for supporting updates and deletion.
self.pos_map: dict = {}
# Stores current size of heap.