From 83fa9f8e1f1f8f16862946639403a8c23f5cf076 Mon Sep 17 00:00:00 2001 From: KWON Date: Tue, 22 Jul 2025 15:44:37 +0900 Subject: [PATCH] =?UTF-8?q?=ED=97=A4=EB=8D=94=20=EA=B0=80=EC=A7=80?= =?UTF-8?q?=EA=B3=A0=20=EC=98=A4=EB=8A=94=20=EB=B6=80=EB=B6=84=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/config.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/config.py b/lib/config.py index d242aef..6f7f6a7 100644 --- a/lib/config.py +++ b/lib/config.py @@ -15,14 +15,6 @@ class Config: NOTION_API_BASE = "https://api.notion.com/v1" NOTION_VERSION = "2022-06-28" - @classmethod - def get_notion_headers(cls): - return { - "Authorization": f"Bearer {cls.NOTION_API_SECRET}", - "Notion-Version": cls.NOTION_VERSION, - "Content-Type": "application/json" - } - # 웹훅 서명 검증용 비밀키 (옵션) NOTION_WEBHOOK_SECRET = os.getenv('NOTION_WEBHOOK_SECRET', None)