From 703ce1d7e9804d8a6ef95123669968da3ffe6332 Mon Sep 17 00:00:00 2001 From: jingrow Date: Sat, 25 Oct 2025 12:59:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=B3=BB=E7=BB=9F=E6=9E=B6?= =?UTF-8?q?=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/jingrow/jingrow/modules/utils.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/apps/jingrow/jingrow/modules/utils.py b/apps/jingrow/jingrow/modules/utils.py index 6bf1bf2..c65343d 100644 --- a/apps/jingrow/jingrow/modules/utils.py +++ b/apps/jingrow/jingrow/modules/utils.py @@ -1,18 +1,10 @@ # Copyright (c) 2025, JINGROW # License: MIT. See LICENSE -from __future__ import annotations - from typing import Any def load_pagetype_module(pagetype: str, module: str | None = None, prefix: str = "", suffix: str = "") -> Any: - """ - 严格对齐 jingrow 系统:直接调用上游的 jingrow.modules.utils.load_pagetype_module。 - 不做任何本地回退与兼容处理。 - """ - from jingrow.modules.utils import load_pagetype_module as upstream_loader # type: ignore - - return upstream_loader(pagetype, module, prefix, suffix) + pass