Skip to content

Commit b493a38

Browse files
committed
Fix formatting to pass check/format
1 parent b3ae05a commit b493a38

File tree

1,374 files changed

+94443
-94443
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,374 files changed

+94443
-94443
lines changed

.coveragerc

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
[run]
2-
branch = True
3-
4-
[report]
5-
exclude_also =
6-
def __repr__
7-
if self.debug:
8-
if settings.DEBUG
9-
raise AssertionError
10-
raise NotImplementedError
11-
if 0:
12-
if __name__ == .__main__.:
13-
if TYPE_CHECKING:
14-
class .*\bProtocol\):
15-
@(abc\.)?abstractmethod
1+
[run]
2+
branch = True
3+
4+
[report]
5+
exclude_also =
6+
def __repr__
7+
if self.debug:
8+
if settings.DEBUG
9+
raise AssertionError
10+
raise NotImplementedError
11+
if 0:
12+
if __name__ == .__main__.:
13+
if TYPE_CHECKING:
14+
class .*\bProtocol\):
15+
@(abc\.)?abstractmethod

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
blank_issues_enabled: false
2-
contact_links:
3-
- name: Features, Bug Reports, Questions
4-
url: https://github.com/orgs/griptape-ai/discussions/new/choose
5-
about: Our preferred starting point if you have any questions or suggestions about features or behavior.
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Features, Bug Reports, Questions
4+
url: https://github.com/orgs/griptape-ai/discussions/new/choose
5+
about: Our preferred starting point if you have any questions or suggestions about features or behavior.
Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
name: "Init Environment"
2-
description: "Initialize bare environment for tests"
3-
runs:
4-
using: "composite"
5-
steps:
6-
- name: Checkout actions
7-
uses: actions/checkout@v4
8-
9-
- id: setup-python
10-
name: Set up Python ${{ matrix.python-version }}
11-
uses: actions/setup-python@v5
12-
with:
13-
python-version: ${{ matrix.python-version }}
14-
15-
- name: Install uv
16-
uses: astral-sh/setup-uv@v5
17-
with:
18-
enable-cache: true
19-
cache-dependency-glob: "uv.lock"
20-
21-
- name: Install dependencies
22-
shell: bash
23-
run: uv sync --all-extras --all-groups
1+
name: "Init Environment"
2+
description: "Initialize bare environment for tests"
3+
runs:
4+
using: "composite"
5+
steps:
6+
- name: Checkout actions
7+
uses: actions/checkout@v4
8+
9+
- id: setup-python
10+
name: Set up Python ${{ matrix.python-version }}
11+
uses: actions/setup-python@v5
12+
with:
13+
python-version: ${{ matrix.python-version }}
14+
15+
- name: Install uv
16+
uses: astral-sh/setup-uv@v5
17+
with:
18+
enable-cache: true
19+
cache-dependency-glob: "uv.lock"
20+
21+
- name: Install dependencies
22+
shell: bash
23+
run: uv sync --all-extras --all-groups
Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
1-
name: "Init Environment"
2-
description: "Initialize environment for tests"
3-
runs:
4-
using: "composite"
5-
steps:
6-
- name: Checkout actions
7-
uses: actions/checkout@v4
8-
9-
- id: setup-python
10-
name: Set up Python ${{ matrix.python-version }}
11-
uses: actions/setup-python@v5
12-
with:
13-
python-version: ${{ matrix.python-version }}
14-
15-
- name: Install uv
16-
uses: astral-sh/setup-uv@v5
17-
with:
18-
enable-cache: true
19-
cache-dependency-glob: "uv.lock"
20-
21-
- name: Install dependencies
22-
shell: bash
23-
run: uv sync --all-extras --all-groups
24-
25-
- name: Get installed Playwright version
26-
id: playwright-version
27-
run: |
28-
version=$(uv run playwright -V | awk '{print $2}' | tr -d '\n')
29-
echo "version=$version" >> $GITHUB_OUTPUT
30-
shell: bash
31-
32-
- uses: actions/cache@v4
33-
id: playwright-cache
34-
with:
35-
path: ${{ matrix.os == 'windows-latest' && '~\\AppData\\Local\\ms-playwright' || '~/.cache/ms-playwright' }}
36-
key: '${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }}'
37-
38-
- name: Install playwright
39-
if: steps.playwright-cache.outputs.cache-hit != 'true'
40-
run: uv run playwright install --with-deps
41-
shell: bash
1+
name: "Init Environment"
2+
description: "Initialize environment for tests"
3+
runs:
4+
using: "composite"
5+
steps:
6+
- name: Checkout actions
7+
uses: actions/checkout@v4
8+
9+
- id: setup-python
10+
name: Set up Python ${{ matrix.python-version }}
11+
uses: actions/setup-python@v5
12+
with:
13+
python-version: ${{ matrix.python-version }}
14+
15+
- name: Install uv
16+
uses: astral-sh/setup-uv@v5
17+
with:
18+
enable-cache: true
19+
cache-dependency-glob: "uv.lock"
20+
21+
- name: Install dependencies
22+
shell: bash
23+
run: uv sync --all-extras --all-groups
24+
25+
- name: Get installed Playwright version
26+
id: playwright-version
27+
run: |
28+
version=$(uv run playwright -V | awk '{print $2}' | tr -d '\n')
29+
echo "version=$version" >> $GITHUB_OUTPUT
30+
shell: bash
31+
32+
- uses: actions/cache@v4
33+
id: playwright-cache
34+
with:
35+
path: ${{ matrix.os == 'windows-latest' && '~\\AppData\\Local\\ms-playwright' || '~/.cache/ms-playwright' }}
36+
key: '${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }}'
37+
38+
- name: Install playwright
39+
if: steps.playwright-cache.outputs.cache-hit != 'true'
40+
run: uv run playwright install --with-deps
41+
shell: bash

.github/dependabot.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
version: 2
2-
enable-beta-ecosystems: true
3-
updates:
4-
- package-ecosystem: "uv"
5-
directory: "/"
6-
schedule:
7-
interval: "weekly"
8-
versioning-strategy: "auto"
9-
groups:
10-
production-dependencies:
11-
dependency-type: "production"
12-
update-types:
13-
- "patch"
14-
- "minor"
15-
development-dependencies:
16-
dependency-type: "development"
17-
update-types:
18-
- "minor"
19-
- "patch"
20-
- "major"
21-
commit-message:
22-
prefix: deps
23-
- package-ecosystem: "github-actions"
24-
directory: "/"
25-
schedule:
26-
interval: "weekly"
1+
version: 2
2+
enable-beta-ecosystems: true
3+
updates:
4+
- package-ecosystem: "uv"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
versioning-strategy: "auto"
9+
groups:
10+
production-dependencies:
11+
dependency-type: "production"
12+
update-types:
13+
- "patch"
14+
- "minor"
15+
development-dependencies:
16+
dependency-type: "development"
17+
update-types:
18+
- "minor"
19+
- "patch"
20+
- "major"
21+
commit-message:
22+
prefix: deps
23+
- package-ecosystem: "github-actions"
24+
directory: "/"
25+
schedule:
26+
interval: "weekly"

.github/release.yml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
changelog:
2-
exclude:
3-
labels:
4-
- ignore-for-release
5-
authors:
6-
- octocat
7-
categories:
8-
- title: ✨ Enhancements
9-
labels:
10-
- enhancement
11-
- title: 🐛 Bug Fixes
12-
labels:
13-
- bug
14-
- title: 🚀 Performance Improvements
15-
labels:
16-
- performance
17-
- title: 📦 Dependencies
18-
labels:
19-
- dependencies
20-
- title: 📚 Documentation
21-
labels:
22-
- documentation
23-
- title: Other Changes
24-
labels:
25-
- "*"
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
authors:
6+
- octocat
7+
categories:
8+
- title: ✨ Enhancements
9+
labels:
10+
- enhancement
11+
- title: 🐛 Bug Fixes
12+
labels:
13+
- bug
14+
- title: 🚀 Performance Improvements
15+
labels:
16+
- performance
17+
- title: 📦 Dependencies
18+
labels:
19+
- dependencies
20+
- title: 📚 Documentation
21+
labels:
22+
- documentation
23+
- title: Other Changes
24+
labels:
25+
- "*"

0 commit comments

Comments
 (0)