From 67a8f1f970edd6c623f7bd36d151a15cb7afd3d2 Mon Sep 17 00:00:00 2001 From: santhoshtk Date: Fri, 13 Jan 2023 16:00:55 +0530 Subject: [PATCH] Resolve --blacklist-- issue because of random module --- algorithms/Python/trees/binaryTreeTraversals.py | 1 - 1 file changed, 1 deletion(-) diff --git a/algorithms/Python/trees/binaryTreeTraversals.py b/algorithms/Python/trees/binaryTreeTraversals.py index b6c211d4..33ee4605 100644 --- a/algorithms/Python/trees/binaryTreeTraversals.py +++ b/algorithms/Python/trees/binaryTreeTraversals.py @@ -6,7 +6,6 @@ Space Complexity: O(n) (Auxiliary space) """ from typing import Optional, Union from queue import Queue, LifoQueue -from random import randint class BinaryTreeNode: