From 2735abfe81a7c60a56a1d08fff99dab3dd5e7904 Mon Sep 17 00:00:00 2001 From: schoeffelbe82781 Date: Wed, 23 Apr 2025 10:23:55 +0200 Subject: [PATCH] Removed unneccessary inheritance due to syntax --- schoeffelbe/pr04.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schoeffelbe/pr04.py b/schoeffelbe/pr04.py index a66f210..25d3f2c 100644 --- a/schoeffelbe/pr04.py +++ b/schoeffelbe/pr04.py @@ -157,7 +157,7 @@ class BinaryTreeNode(MemoryCell): def __str__(self): return str(self.value) -class BinaryTree(BinaryTreeNode): +class BinaryTree: def __init__(self): self.root: BinaryTreeNode | None = None