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.9
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)
Testimonials
Christopher Redwine, Senior Software Engineer at TechnologyAdvice
hmm, i dunno about this one chief
Michael Kennedy & Brian Okken, hosts of the Python Bytes podcast:
I kind of like this being separate from other tools
Someone on Discord
you're a monster
Will McGugan, CEO / Founder of http://Textualize.io:
Embrace the Walrus!
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
Built Distribution
Hashes for auto_walrus-0.1.9-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6aef0005441523cdb4225d41207e16f25ef024d71540ddcc4ec71d61887ff53 |
|
MD5 | c003a0e95fecc2d2d15d376d4c1dc6f4 |
|
BLAKE2b-256 | 161e1579375f516b9953874855f6e704dbfe1640580b2e4681d32473b1f5fe46 |