From b819180656cac39f886ec3e505c7f3a46682ec3e Mon Sep 17 00:00:00 2001 From: mbsantiago Date: Thu, 1 May 2025 07:15:35 +0100 Subject: [PATCH] Add preprocess command to init --- batdetect2/cli/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/batdetect2/cli/__init__.py b/batdetect2/cli/__init__.py index 7b3e659..5643b47 100644 --- a/batdetect2/cli/__init__.py +++ b/batdetect2/cli/__init__.py @@ -1,6 +1,7 @@ from batdetect2.cli.base import cli from batdetect2.cli.compat import detect from batdetect2.cli.data import data +from batdetect2.cli.preprocess import preprocess from batdetect2.cli.train import train __all__ = [ @@ -8,6 +9,7 @@ __all__ = [ "detect", "data", "train", + "preprocess", ]