summaryrefslogtreecommitdiff
path: root/maint/cargo-check-publishable
Commit message (Collapse)AuthorAgeFilesLines
* python: Use "a not in b" rather than "not a in b".Nick Mathewson2024-10-241-2/+2
| | | | Due to precedence, both work the same, but the former is preferred.
* python: Fix warnings about unused variables and modules.Nick Mathewson2024-10-241-1/+1
|
* Run "black" to reformat all our pythonNick Mathewson2024-10-241-25/+40
| | | | | | | | | | | | | | | | | "Black" is an "opinionated" python formatter, whose opinionatedness is somewhat in the spirit of rustfmt. This MR runs black with default settings on all of our python code in Arti. It was produced by the following commands ``` # Everything in python/ black python/ # Everything with a .py extension fd '.py$' -X black # Everything with a python shebang. git grep -l '#! */usr/bin/env *python' | xargs black ```
* maint scripts: Fix some absolute shebangsIan Jackson2024-07-161-1/+1
|
* maint/cargo-check-publishable: Check categoriesIan Jackson2024-07-101-0/+119
What a palaver.