Skip to content

Commit fc58e59

Browse files
committed
fix: Resolve TOML syntax errors in pyproject.toml
- Fix unescaped backslashes in coverage exclude_lines patterns - Fix unescaped backslashes in black include pattern - Fix unescaped backslashes in mypy exclude patterns - Fix per-file-ignores format to use proper TOML array syntax - Black pre-commit hook now passes successfully
1 parent 0b112f0 commit fc58e59

38 files changed

Lines changed: 175 additions & 187 deletions

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ PATHAO_ENVIRONMENT=sandbox
1111
PATHAO_TIMEOUT=30
1212

1313
# Optional: Max retries for failed requests
14-
PATHAO_MAX_RETRIES=3
14+
PATHAO_MAX_RETRIES=3

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[flake8]
22
max-line-length = 88
3-
extend-ignore = E203, W503
3+
extend-ignore = E203, W503

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ Paste the full error message here
3939
- pathao version: [e.g. 0.1.0]
4040

4141
**Additional context**
42-
Add any other context about the problem here.
42+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ Add any other context or screenshots about the feature request here.
2323
If this relates to a Pathao API feature, please provide:
2424
- API endpoint
2525
- Documentation link
26-
- Expected behavior
26+
- Expected behavior

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ updates:
1111
- "yourusername"
1212
commit-message:
1313
prefix: "deps"
14-
include: "scope"
14+
include: "scope"

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Brief description of the changes in this PR.
2626
- [ ] I have made corresponding changes to the documentation
2727
- [ ] My changes generate no new warnings
2828
- [ ] I have added tests that prove my fix is effective or that my feature works
29-
- [ ] New and existing unit tests pass locally with my changes
29+
- [ ] New and existing unit tests pass locally with my changes

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
steps:
4040
- name: Deploy to GitHub Pages
4141
id: deployment
42-
uses: actions/deploy-pages@v4
42+
uses: actions/deploy-pages@v4

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ jobs:
3333
- name: Publish package to PyPI
3434
uses: pypa/gh-action-pypi-publish@release/v1
3535
with:
36-
password: ${{ secrets.PYPI_API_TOKEN }}
36+
password: ${{ secrets.PYPI_API_TOKEN }}

.github/workflows/quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
pip install pre-commit
2525
2626
- name: Run pre-commit
27-
run: pre-commit run --all-files
27+
run: pre-commit run --all-files

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ jobs:
4545
file: ./coverage.xml
4646
flags: unittests
4747
name: codecov-umbrella
48-
fail_ci_if_error: false
48+
fail_ci_if_error: false

0 commit comments

Comments
 (0)