mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-25 17:10:51 +00:00
formatting
This commit is contained in:
parent
db9a61f83c
commit
4ad61eb08d
3 changed files with 6 additions and 6 deletions
|
|
@ -1,12 +1,12 @@
|
|||
from dataclasses import dataclass
|
||||
from enum import Enum
|
||||
from enum import StrEnum
|
||||
from random import Random
|
||||
from typing import List, Optional
|
||||
|
||||
from ..dataset import ProceduralDataset
|
||||
|
||||
|
||||
class Operation(Enum):
|
||||
class Operation(StrEnum):
|
||||
"""Basic mathematical operations that can be composed"""
|
||||
|
||||
ADD = "+"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue