Fixed variable name in map size calculation

- accidentlally used cal_right_border instead of cal_bottom_border. Always pay attention to warnings of unused variables
- commented out unused code
This commit is contained in:
Doc
2026-01-13 09:57:09 -05:00
parent 3ab553fb6d
commit 4e4d3fc854
2 changed files with 25 additions and 28 deletions

View File

@@ -2,8 +2,6 @@ import json
import subprocess
import pydantic as pyd
import cv2
import numpy as np
from .dfwindow import DFWINDOW
from .mylogging import logger, setup_logging
@@ -562,5 +560,5 @@ def test5():
if __name__ == "__main__":
setup_logging(level="DEBUG", enqueue=False, console_show_time=False, console_tracebacks=True)
test5()