From c70da1a121dd5ecfddf374f3aed97bdf9e1b2511 Mon Sep 17 00:00:00 2001 From: Christine Wang Date: Wed, 15 Jan 2025 16:33:00 -0800 Subject: [PATCH] chore: use pl from graph-sitter instead (#247) --- .codegen/config.toml | 1 + src/codegen/cli/utils/constants.py | 1 + 2 files changed, 2 insertions(+) diff --git a/.codegen/config.toml b/.codegen/config.toml index baccadc..c44cdb3 100644 --- a/.codegen/config.toml +++ b/.codegen/config.toml @@ -1,2 +1,3 @@ repo_name = "codegen-cli" organization_name = "codegen-sh" +programming_language = "UNSUPPORTED" diff --git a/src/codegen/cli/utils/constants.py b/src/codegen/cli/utils/constants.py index f4790c4..af39f5c 100644 --- a/src/codegen/cli/utils/constants.py +++ b/src/codegen/cli/utils/constants.py @@ -4,3 +4,4 @@ class ProgrammingLanguage(StrEnum): PYTHON = "PYTHON" TYPESCRIPT = "TYPESCRIPT" + UNSUPPORTED = "UNSUPPORTED"