Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Ndg07
/
heatmap
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
heatmap
/
check_syntax.py
Ndg07
Feat: 24-hour cleanup for local SQLite
c293f7c
18 days ago
raw
Copy download link
history
blame
contribute
delete
123 Bytes
import
ast
with
open
(
'backend/main_clean.py'
, encoding=
'utf-8'
)
as
f:
src = f.read()
ast.parse(src)
print
(
'Syntax OK'
)