projects
/
pyutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
60cf080
)
Dots instead of pass...
author
Scott Gasch
<
[email protected]
>
Mon, 8 May 2023 02:45:06 +0000
(19:45 -0700)
committer
Scott Gasch
<
[email protected]
>
Mon, 8 May 2023 02:45:06 +0000
(19:45 -0700)
src/pyutils/collectionz/bst.py
patch
|
blob
|
history
diff --git
a/src/pyutils/collectionz/bst.py
b/src/pyutils/collectionz/bst.py
index 246b605c102b123a55b69a80c5f1a6685cb53271..3d0bccc098cfd32c05dfde418ec01f317e8b3385 100644
(file)
--- a/
src/pyutils/collectionz/bst.py
+++ b/
src/pyutils/collectionz/bst.py
@@
-11,15
+11,15
@@
from typing import Any, Generator, List, Optional, Protocol
class Comparable(Protocol):
@abstractmethod
def __lt__(self, other: Any) -> bool:
- pass
+ ...
@abstractmethod
def __le__(self, other: Any) -> bool:
- pass
+ ...
@abstractmethod
def __eq__(self, other: Any) -> bool:
- pass
+ ...
class Node: