From a70f57a3761253c941a3ea3a65405b1b07d51b19 Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Thu, 25 Apr 2024 13:56:29 -0600 Subject: [PATCH] Fix black error Apparently newer black prefers the ellipsis on the same line. --- src/lib/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/utils.py b/src/lib/utils.py index 08bf1a8c..3497cfec 100644 --- a/src/lib/utils.py +++ b/src/lib/utils.py @@ -221,8 +221,7 @@ def __ne__(self, other): class _SupportsComparison(t.Protocol): - def __lt__(self, other: t.Any) -> bool: - ... + def __lt__(self, other: t.Any) -> bool: ... _VersionedObj = t.TypeVar("_VersionedObj")