From 8403e93fa1bcff351a0d3646b4a8e52cc00dffde Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Sun, 7 May 2023 19:45:06 -0700 Subject: [PATCH] Dots instead of pass... --- src/pyutils/collectionz/bst.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pyutils/collectionz/bst.py b/src/pyutils/collectionz/bst.py index 246b605..3d0bccc 100644 --- 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: -- 2.46.0