Files
DeOldify/.pre-commit-config.yaml
Gareth Davidson dff82b6d2e Remove execution bit
All the files marked as executable were bugging me, so I ran this:

find . -executable -type f -print0 | xargs -0 grep -L '#!' | xargs chmod -x
2022-09-19 08:50:00 +01:00

8 lines
141 B
YAML

repos:
- repo: https://github.com/ambv/black
rev: stable
hooks:
- id: black
args: [-S]
language_version: python3.6