From e4800d29371c2fb6ba603e66a4ab3238641088c9 Mon Sep 17 00:00:00 2001 From: "maxiaozhe@alicorns.co.jp" Date: Fri, 28 Jun 2024 02:42:30 +0900 Subject: [PATCH] =?UTF-8?q?bugfix:Js=E3=83=95=E3=82=A1=E3=82=A4=E3=83=AB?= =?UTF-8?q?=E3=81=A7=E3=83=87=E3=83=97=E3=83=AD=E3=82=A4=E6=99=82=E3=81=AE?= =?UTF-8?q?=E4=B8=8D=E5=85=B7=E5=90=88=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/api/api_v1/routers/kintone.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/app/api/api_v1/routers/kintone.py b/backend/app/api/api_v1/routers/kintone.py index d34a48a..722d036 100644 --- a/backend/app/api/api_v1/routers/kintone.py +++ b/backend/app/api/api_v1/routers/kintone.py @@ -404,12 +404,11 @@ def updateappjscss(app,uploads,c:config.KINTONE_ENV): r = httpx.put(url,headers=headers,data=json.dumps(data)) return r.json() -def getTempPath(filename){ +def getTempPath(filename): scriptdir = Path(__file__).resolve().parent rootdir = scriptdir.parent.parent.parent.parent fpath = os.path.join(rootdir,"Temp",filename) return fpath -} def createappjs(domainid,app): db = SessionLocal()