From: Scott Gasch Date: Mon, 8 May 2023 02:45:06 +0000 (-0700) Subject: Dots instead of pass... X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=8403e93fa1bcff351a0d3646b4a8e52cc00dffde;p=pyutils.git Dots instead of pass... --- 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: