Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface-projects
/
huggingbots
like
14
Running
App
Files
Files
Community
18
Fetching metadata from the HF Docker repository...
refs/pr/17
huggingbots
/
Makefile
lunarflu
HF Staff
Synced repo using 'sync_with_huggingface' Github Action
58c201b
over 1 year ago
raw
Copy download link
history
blame
Safe
182 Bytes
.PHONY
: quality style
check_dirs := app.py deepfloydif.py falcon.py
quality:
black --check
$(check_dirs)
ruff
$(check_dirs)
style:
black
$(check_dirs)
ruff
$(check_dirs)
--fix