Spaces:
Running on Zero
Running on Zero
Ignore Gradio's auto-generated app.pyi stub
Browse filesGradio writes a type-stub .pyi next to the entrypoint when the Blocks
is loaded, which kept dirtying the working tree after every local
run.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
- .gitignore +3 -0
.gitignore
CHANGED
|
@@ -6,6 +6,9 @@ dist/
|
|
| 6 |
wheels/
|
| 7 |
*.egg-info
|
| 8 |
|
|
|
|
|
|
|
|
|
|
| 9 |
# Virtual environments
|
| 10 |
.venv
|
| 11 |
|
|
|
|
| 6 |
wheels/
|
| 7 |
*.egg-info
|
| 8 |
|
| 9 |
+
# Gradio writes an app.pyi stub alongside the entrypoint on Blocks load
|
| 10 |
+
app.pyi
|
| 11 |
+
|
| 12 |
# Virtual environments
|
| 13 |
.venv
|
| 14 |
|