openai/openai-python

Public

mirrored fromhttps://github.com/openai/openai-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dev/codex/pin-setup-rye-workflows-main

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

scripts/run-pyright

8lines · modecode

1#!/usr/bin/env bash
2
3set -euo pipefail
4
5cd "$(dirname "$0")/.."
6
7CONFIG=${PYRIGHT_PROJECT:-pyproject.toml}
8exec pyright -p "$CONFIG" "$@"
9