Skip to content

Commit 27d0e67

Browse files
chore(internal): minor formatting changes (#2050)
1 parent abc5459 commit 27d0e67

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Diff for: .github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929

3030
- name: Run lints
3131
run: ./scripts/lint
32+
3233
test:
3334
name: test
3435
runs-on: ubuntu-latest

Diff for: scripts/bootstrap

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
cd "$(dirname "$0")/.."
66

7-
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then
7+
if ! command -v rye >/dev/null 2>&1 && [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then
88
brew bundle check >/dev/null 2>&1 || {
99
echo "==> Installing Homebrew dependencies…"
1010
brew bundle

Diff for: scripts/lint

-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ rye run lint
99

1010
echo "==> Making sure it imports"
1111
rye run python -c 'import openai'
12-

0 commit comments

Comments
 (0)