Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ repos:
- --use-current-year
exclude: 'idf_build_apps/vendors/'
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.15.6'
rev: 'v0.16.5'
hooks:
- id: ruff-check
args: ['--fix']
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.19.1'
rev: 'v2.3.1'
hooks:
- id: mypy
args: ['--warn-unused-ignores']
Expand Down
1 change: 1 addition & 0 deletions docs/en/guides/1.x_to_2.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ After:

```python
import logging

idf_build_apps_logger = logging.getLogger('idf_build_apps')
```

Expand Down
1 change: 1 addition & 0 deletions docs/en/guides/custom_app.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ from idf_build_apps.constants import BuildStatus
import os
from typing import Literal # Python 3.8+ only. from typing_extensions import Literal for earlier versions


class CustomApp(App):
build_system: Literal['custom'] = 'custom' # Must be unique to identify your custom app type

Expand Down