From 91f87fa7848336d2cb7a8137f9c936344953a44a Mon Sep 17 00:00:00 2001 From: Robert Sachunsky Date: Sun, 19 Jul 2026 23:47:03 +0200 Subject: [PATCH] =?UTF-8?q?rename=20`mb=5Fro=5Fon=5Flayout`=20=E2=86=92=20?= =?UTF-8?q?`reorder`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/eynollah/cli/cli_readingorder.py | 2 +- src/eynollah/{mb_ro_on_layout.py => reorder.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/eynollah/{mb_ro_on_layout.py => reorder.py} (100%) diff --git a/src/eynollah/cli/cli_readingorder.py b/src/eynollah/cli/cli_readingorder.py index 6b44506..ee8cde2 100644 --- a/src/eynollah/cli/cli_readingorder.py +++ b/src/eynollah/cli/cli_readingorder.py @@ -33,7 +33,7 @@ def readingorder_cli(ctx, input, dir_in, out, overwrite): """ Generate ReadingOrder from ML model """ - from ..mb_ro_on_layout import Reorder + from ..reorder import Reorder assert bool(input) != bool(dir_in), "Either -i (single input) or -di (directory) must be provided, but not both." orderer = Reorder(model_zoo=ctx.obj.model_zoo, device=ctx.obj.device) diff --git a/src/eynollah/mb_ro_on_layout.py b/src/eynollah/reorder.py similarity index 100% rename from src/eynollah/mb_ro_on_layout.py rename to src/eynollah/reorder.py