RainPoo commited on
Commit
a4f0598
·
1 Parent(s): 47a7ea0

style: implement black pre-commit

Browse files
Files changed (1) hide show
  1. .pre-commit-config.yaml +7 -0
.pre-commit-config.yaml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ repos:
2
+ - repo: https://github.com/psf/black
3
+ rev: 24.10.0
4
+ hooks:
5
+ - id: black
6
+ args: [--line-length=88]
7
+ language_version: python3.12