From 9faee0c4525637356ca38c92e9f648b0fe92eb4f Mon Sep 17 00:00:00 2001 From: Hari Date: Sat, 20 Jan 2024 16:36:43 +0100 Subject: [PATCH] additional credits added --- pathfinding3d/core/heap.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pathfinding3d/core/heap.py b/pathfinding3d/core/heap.py index 78f91ca..b5d819a 100644 --- a/pathfinding3d/core/heap.py +++ b/pathfinding3d/core/heap.py @@ -1,6 +1,7 @@ """ Simple heap with ordering and removal. Inspired from https://github.com/brean/python-pathfinding/pull/54 +Original author: https://github.com/peterchenadded """ import heapq from typing import Callable, Union