From 917bcb42c89579c9f850ed40057a839767fa3750 Mon Sep 17 00:00:00 2001 From: erjemin Date: Thu, 16 Apr 2026 20:37:45 +0300 Subject: [PATCH] minor: del print --- oknardia/web/add_func.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oknardia/web/add_func.py b/oknardia/web/add_func.py index 9b84a2d..28dce2a 100644 --- a/oknardia/web/add_func.py +++ b/oknardia/web/add_func.py @@ -201,7 +201,7 @@ def make_big_img_win_flap(img_file_name_with_path: str, width: int, height: int, # height_door = int(height_door) # создаем картинку с нужными размерами img = Image.new("RGBA", (int(width * PICT_H / height_max), PICT_H), (255, 255, 255, 0)) - print(img_file_name_with_path) + # print(img_file_name_with_path) # находим крайние точки периметра (если окно -- выравнено вверх; если дверь -- вниз) top = 0 left = 0 @@ -592,5 +592,5 @@ def touch_reload_wsgi(s: str = ''): :return: None """ with open(TOUCH_RELOAD, 'a', encoding="utf-8") as f: - f.write(f'\nreload wsgi by cash-template {s}' - f' {django.utils.dateformat.format(django.utils.timezone.now(), "Y-m-d H:i:s")}') + f.write(f'\nreload wsgi by cash-template - {s} - ' + f'{django.utils.dateformat.format(django.utils.timezone.now(), "Y-m-d H:i:s")}')