Spaces:
Sleeping
Sleeping
Ray Chen
commited on
Commit
•
d809b84
1
Parent(s):
64d468d
chore: python environment settings
Browse files- .gitignore +1 -0
- .python-version +1 -0
- Makefile +4 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
__pycache__
|
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.12.5
|
Makefile
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.PHONY: format_python
|
2 |
+
format_python:
|
3 |
+
python3 -m black .
|
4 |
+
python3 -m isort .
|