A linter for Cython files
Project description
auto-walrus
Automatically use the walrus operator where possible
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.3
hooks:
- id: auto-walrus
Command-line example
$ auto-walrus myfile.py
- n = len(a)
- if n > 10:
+ if (n := len(a)) > 10:
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.
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.3.tar.gz
(4.5 kB
view hashes)
Built Distribution
Close
Hashes for auto_walrus-0.1.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11a871819fe55fa3c66fcdc3ee5084ea29fe12de9e0efd12e17dfe722bb3ba44 |
|
MD5 | b85aecc9a152a0ef80f1b47c2787f61f |
|
BLAKE2b-256 | 233ee066393b7f9ed1d416743857137ccaa03a90458942eebf7268b443cea0eb |