loose -> lose (#479)

This commit is contained in:
Charlotte Weaver
2018-11-28 13:07:10 -08:00
committed by GitHub
parent 455d987398
commit 76c0cbf16b
+1 -1
View File
@@ -69,7 +69,7 @@ class ScanpyEngine(CXGDriver):
def _can_cast_to_float32(ann):
if ann.dtype.kind == "f":
if not np.can_cast(ann.dtype, np.float32):
warnings.warn(f"Annotation {ann.name} will be converted to 32 bit float and may loose precision.")
warnings.warn(f"Annotation {ann.name} will be converted to 32 bit float and may lose precision.")
return True
return False