diff --git a/server/app/scanpy_engine/scanpy_engine.py b/server/app/scanpy_engine/scanpy_engine.py index 3e656a05..6a33b007 100644 --- a/server/app/scanpy_engine/scanpy_engine.py +++ b/server/app/scanpy_engine/scanpy_engine.py @@ -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