Skip to content

Commit

Permalink
Update flake8 pre-commit hook to 7.1.0 (#389)
Browse files Browse the repository at this point in the history
This patch resolves lint failure when using Python 3.12.
```
questionary/prompts/common.py:282:24: E713 test for membership should be 'not in'
questionary/prompts/common.py:300:45: E713 test for membership should be 'not in'
```
Flake8 adds Python 3.12 support in 6.1.0.
  • Loading branch information
FantasqueX authored Jul 24, 2024
1 parent f6761e2 commit 2aeed69
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repos:
- "--profile=black"

- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 7.1.0
hooks:
- id: flake8
args: ["--max-line-length", "120", "--max-doc-length", "140"]
Empty file added 1
Empty file.

0 comments on commit 2aeed69

Please sign in to comment.