fix(tooling): remove unused imports flagged by ruff

Drop unused hashlib, math, and os imports from assign-astro-ids,
generate-star-map, and test_quaternius_raw to pass ruff clean.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-05 09:40:02 +02:00
co-authored by Claude Opus 4.6
parent 980201fb49
commit 2300d9659d
3 changed files with 0 additions and 4 deletions
-1
View File
@@ -17,7 +17,6 @@ Also writes spectral class from the real catalog into each node.
"""
import json
import hashlib
from pathlib import Path
STAR_MAP_PATH = Path(__file__).parent.parent / "docs/design/star-map.json"
-2
View File
@@ -13,10 +13,8 @@ Standard library only. No external dependencies.
from __future__ import annotations
import json
import math
import random
import sys
import os
import argparse
from collections import defaultdict, deque
from pathlib import Path
-1
View File
@@ -1,6 +1,5 @@
"""Load original Quaternius body + hair as-is and export a combined GLB for visual inspection."""
import sys
import os
import bpy
if __name__ == "__main__":