refactor(trajectory): add missing import for json module

- Added 'import json' at the beginning of trajectory_preprocess_op.py
- This import is necessary for handling JSON data in the trajectory preprocessing task
This commit is contained in:
jinli.yl 2025-08-31 16:04:20 +08:00
parent 3056389c19
commit 2fdb51ff5e

View file

@ -1,3 +1,4 @@
import json
from typing import List, Dict
from flowllm import C, BaseOp