Remove a stray __pycache__ artifact
Browse filesA compiled .pyc had been uploaded alongside load_dataset.py. CPython embeds the absolute path of the source file at compile time, so the artifact carried a local filesystem path. It served no purpose for anyone downloading the dataset.
Adds a .gitignore so a future upload cannot reintroduce it.
- .gitignore +2 -0
- __pycache__/load_dataset.cpython-311.pyc +0 -0
.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
__pycache__/
|
| 2 |
+
*.py[cod]
|
__pycache__/load_dataset.cpython-311.pyc
DELETED
|
Binary file (7.29 kB)
|
|
|