Dots instead of pass...
authorScott Gasch <[email protected]>
Mon, 8 May 2023 02:45:06 +0000 (19:45 -0700)
committerScott Gasch <[email protected]>
Mon, 8 May 2023 02:45:06 +0000 (19:45 -0700)
src/pyutils/collectionz/bst.py

index 246b605c102b123a55b69a80c5f1a6685cb53271..3d0bccc098cfd32c05dfde418ec01f317e8b3385 100644 (file)
@@ -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: