From 613951d848c077146bf7b529b73e8b7ebe0f019b Mon Sep 17 00:00:00 2001 From: Dhruv Manilawala Date: Mon, 20 Jan 2025 10:23:22 +0530 Subject: [PATCH] Ignore notebook with syntax error in ecosystem (#15604) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I'll open a PR in `openai/openai-cookbook` to fix these syntax errors later but for now let's just ignore the notebook. Screenshot 2025-01-20 at 10 17 43 AM --- python/ruff-ecosystem/ruff_ecosystem/defaults.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/ruff-ecosystem/ruff_ecosystem/defaults.py b/python/ruff-ecosystem/ruff_ecosystem/defaults.py index e6667bc71f..1fd66f4afd 100644 --- a/python/ruff-ecosystem/ruff_ecosystem/defaults.py +++ b/python/ruff-ecosystem/ruff_ecosystem/defaults.py @@ -121,6 +121,7 @@ DEFAULT_TARGETS = [ # These notebooks contain syntax errors because certain plain text / markdown # cells are marked as code cells. "exclude": [ + "examples/Assistants_API_overview_python.ipynb", "examples/Chat_finetuning_data_prep.ipynb", "examples/chatgpt/gpt_actions_library/gpt_action_google_drive.ipynb", "examples/chatgpt/gpt_actions_library/gpt_action_redshift.ipynb",