auto-walrus 0.1.8
pip install auto-walrus==0.1.8
Released:
A linter for Cython files
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Marco Gorelli
- Requires: Python >=3.8
Classifiers
- License
- Programming Language
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.8
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
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Marco Gorelli
- Requires: Python >=3.8
Classifiers
- License
- Programming Language
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
File details
Details for the file auto_walrus-0.1.8.tar.gz
.
File metadata
- Download URL: auto_walrus-0.1.8.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 | e3233e577191fde004a8d027b2a247a641e263d1b78038cbb0fadcf8d768e4e4 |
|
MD5 | 58eeb94ad02431f87c6566e38036006a |
|
BLAKE2b-256 | 14ff2d5893a3566be61a459d8d29f792fdef784dd3026ee23859df4438e0f642 |
File details
Details for the file auto_walrus-0.1.8-py2.py3-none-any.whl
.
File metadata
- Download URL: auto_walrus-0.1.8-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 | efdbcdeff3f2472304cf7424cdf0b652dfea8c31e1101784e5ee5497be501f33 |
|
MD5 | c9725b82ef39af8a7e7b3d2981dfd77f |
|
BLAKE2b-256 | c90e95daafb6bd153c8ca8bc5f46782a577e9bdf5566c24e534e8e36d38fef4e |