fix: Import Random from random module to resolve undefined name error

This commit is contained in:
Andreas Koepf (aider) 2025-02-22 20:24:50 +00:00
parent acd078b448
commit 9c61b42879

View file

@ -1,6 +1,7 @@
"""FastAPI server implementation for Reasoning Gym."""
import logging
from random import Random
from fastapi import FastAPI, HTTPException