remove ipynb cleanup script

This commit is contained in:
smgr 2025-11-21 02:26:56 -08:00
parent 3c9418f0c0
commit 71c0083194

View File

@ -1,10 +0,0 @@
import os
threshold = 5 * 1024 * 1024
def blob_callback(blob, metadata):
if not blob.path.endswith(b'.ipynb'):
return
if len(blob.data) <= threshold:
return
blob.skip()