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.2
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.2.tar.gz
(4.5 kB
view details)
Built Distribution
File details
Details for the file auto_walrus-0.1.2.tar.gz
.
File metadata
- Download URL: auto_walrus-0.1.2.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbc65ff28e9d66f8a20a4c926d8a58552c4bbdfffdfad9962547ce2c3788c857 |
|
MD5 | 6c495fc945d47edd166427fb9749eaac |
|
BLAKE2b-256 | 40b366f281a52ea4bb7aff1637f9cf5607383448926229e0c273d6ca53beff19 |
Provenance
File details
Details for the file auto_walrus-0.1.2-py2.py3-none-any.whl
.
File metadata
- Download URL: auto_walrus-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 4.9 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 | 7a3c1e3221160c255df1ec82b743e95d3256c873b62c0f09a8163e5e1cbbf7f5 |
|
MD5 | 5c954e0b8411d93960d54a2b485f43f4 |
|
BLAKE2b-256 | b780e144c39ef8187f53321f39d389bc988c7247767b6dd44d5829e4e6eff287 |