This commit is contained in:
2026-01-21 20:35:19 -08:00
parent 06af9b30ac
commit d94e321148
13 changed files with 19 additions and 180 deletions
-10
View File
@@ -1,10 +0,0 @@
from pathlib import Path
p = Path('Store/registry.py')
counts = {}
for i, line in enumerate(p.read_text(encoding='utf-8').splitlines(), start=1):
if not line.strip():
continue
leading = len(line) - len(line.lstrip(' '))
counts[leading] = counts.get(leading, 0) + 1
for k in sorted(counts.keys()):
print(k, counts[k])