8000 Renamed `inferred_tolerance_multiplier` to `tolerance_multiplier`. · beancount/beancount@ae5d5f1 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Renamed inferred_tolerance_multiplier to tolerance_multiplier. #841

Renamed inferred_tolerance_multiplier to tolerance_multiplier.

Renamed inferred_tolerance_multiplier to tolerance_multiplier. #841

Workflow file for this run

name: linting
on:
- push
- pull_request
- workflow_dispatch
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- uses: astral-sh/setup-uv@v5
- run: pip install ruff
- run: make lint
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
# pip doesn't support this
- uses: astral-sh/setup-uv@v5
- run: uv pip install -r ./pyproject.toml --extra types --system
- run: mypy .
0