mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 09:21:13 +08:00
Fixes black failures from Previous PR (#1751)
* Fixes black failures from Previous PR * Fixes equality testing alert * Fixes call to main() alert * Fixes unused import
This commit is contained in:
@ -24,6 +24,7 @@ from random import randint
|
||||
|
||||
class Node:
|
||||
"""Binary Search Tree Node"""
|
||||
|
||||
def __init__(self, key, freq):
|
||||
self.key = key
|
||||
self.freq = freq
|
||||
|
Reference in New Issue
Block a user