#!/usr/bin/env python3 """Batch G flex — D790, tested 2026-06-26 (4 specimens, printed 2026-06-09).""" from _lib import process_session SESSION = { "session_folder": "2026_06_26/Flexural", "test_folder": "TST1.Test", "xlsx_name": "flex_6.26.xlsx", "astm": {"standard": "D790", "type": "Procedure A", "year": "2017"}, "batch_label": "G", "test_runs": [(i, "SLS", "2026-06-09") for i in range(1, 5)], } if __name__ == "__main__": process_session(SESSION)