From 1e4fbafb163626d13c8bc7658ba4cf01900a99f8 Mon Sep 17 00:00:00 2001 From: Oskar Weser Date: Wed, 4 Dec 2024 14:05:52 -0500 Subject: [PATCH] trigger pipeline --- src/quemb/shared/typing.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/quemb/shared/typing.py b/src/quemb/shared/typing.py index 8457420d..5f40d527 100644 --- a/src/quemb/shared/typing.py +++ b/src/quemb/shared/typing.py @@ -14,7 +14,6 @@ # We want the dtype to behave covariant, i.e. if a # Vector[float] is allowed, then the more specific # Vector[float64] should also be allowed. -# # Also see here: # https://stackoverflow.com/questions/61568462/what-does-typevara-b-covariant-true-mean T_dtype_co = TypeVar("T_dtype_co", bound=np.generic, covariant=True)