A linter for Cython files
Project description
auto-walrus
auto-walrus
A tool and pre-commit hook to automatically apply the awesome walrus operator.
Installation
pip install auto-walrus
Usage as a pre-commit hook
See pre-commit for instructions
Sample .pre-commit-config.yaml
:
- repo: https://github.com/MarcoGorelli/auto-walrus
rev: v0.1.7
hooks:
- id: auto-walrus
Command-line example
auto-walrus myfile.py
- n = 10
- if n > 3:
+ if (n := 10) > 3:
Configuration
Using the walrus operator can result in longer lines. Lines longer than what you
pass to --line-length
won't be rewritten to use walrus operators.
E.g.
auto-walrus myfile_1.py myfile_2.py --line-length 89
You can turn off rewrites by adding a # no-walrus
comment, either when you
assign a variable, or when you use it in an if
or where
statement, e.g.:
n = 10 # no-walrus
if n > 3:
print(n)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
auto_walrus-0.1.7.tar.gz
(5.3 kB
view details)
Built Distribution
File details
Details for the file auto_walrus-0.1.7.tar.gz
.
File metadata
- Download URL: auto_walrus-0.1.7.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ed1628816d56e4f4aaefd3a1398b86fa0008580aedb4c0f4ac0f97cb566f4a5 |
|
MD5 | 8756c07847ba2c8d4ba84080dc7dc640 |
|
BLAKE2b-256 | 7ad62e9fd0f883ae9a73b362aa507dd85eadc411f29eaa0f891d6804ea0ccb98 |
Provenance
File details
Details for the file auto_walrus-0.1.7-py2.py3-none-any.whl
.
File metadata
- Download URL: auto_walrus-0.1.7-py2.py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b37d19763c00ccaf0627342669a6e816ac660f163dd510b5907bb2bd1d07458 |
|
MD5 | 782533ae357cce19f665c9473b563ca6 |
|
BLAKE2b-256 | dbeca658e9ea83910ee9fe56d7fd75bc467d3eedc86d528291934553478f8668 |