Skip to content

Commit da28601

Browse files
committed
fix precommit
1 parent 4da21a5 commit da28601

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

trinity/common/workflows/workflow.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from __future__ import annotations
55

66
from dataclasses import asdict, dataclass, field
7-
from typing import TYPE_CHECKING, Any, List, Optional, Type, Union
7+
from typing import TYPE_CHECKING, List, Optional, Type, Union
88

99
from trinity.common.config import FormatConfig, GenerationConfig
1010
from trinity.common.experience import Experience
@@ -13,8 +13,10 @@
1313

1414
if TYPE_CHECKING:
1515
import openai
16+
1617
from trinity.common.models.model import ModelWrapper
1718

19+
1820
@dataclass
1921
class Task(dict):
2022
"""A Task class that defines a task and its associated reward function / workflow."""

0 commit comments

Comments
 (0)