Refactored itf.__dict__
to vars(itf)
#351
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
formatter: | |
name: auto-formatter | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install ruff | |
run: pip install ruff==0.6.9 | |
- name: Check format | |
run: python -m ruff format comtypes/. --check --diff | |
- name: Check lint | |
run: python -m ruff check --output-format=github comtypes/. |