From e33c04597aa32d66c9119d3a3b3b5d42d5df878e Mon Sep 17 00:00:00 2001 From: Aart Stuurman Date: Wed, 29 May 2024 18:09:06 +0200 Subject: [PATCH] add ctd to init --- virtual_ship/instruments/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/virtual_ship/instruments/__init__.py b/virtual_ship/instruments/__init__.py index 261bd7a8..f6d89a5a 100644 --- a/virtual_ship/instruments/__init__.py +++ b/virtual_ship/instruments/__init__.py @@ -1,6 +1,6 @@ """Measurement instrument that can be used with Parcels.""" -from . import argo_float, drifter +from . import argo_float, ctd, drifter from .location import Location -__all__ = ["Location", "argo_float", "drifter"] +__all__ = ["Location", "argo_float", "ctd", "drifter"]