mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-25 17:10:42 +00:00
Fix import ordering with isort
- Move typing_extensions import to proper location - Satisfy pre-commit isort requirements
This commit is contained in:
parent
0ff55bf2cf
commit
f3bbc6a42d
4 changed files with 4 additions and 2 deletions
|
|
@ -12,7 +12,6 @@ from datetime import datetime
|
|||
from enum import Enum
|
||||
from pathlib import Path
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
from typing_extensions import TypedDict
|
||||
|
||||
import aiohttp
|
||||
import jsonlines
|
||||
|
|
@ -24,6 +23,7 @@ from pydantic_cli import Cmd, FailedExecutionException, run_and_exit
|
|||
from rich import print as rprint
|
||||
from tenacity import retry, stop_after_attempt, wait_random_exponential
|
||||
from transformers import AutoTokenizer
|
||||
from typing_extensions import TypedDict
|
||||
|
||||
from atroposlib.envs.constants import ENV_NAMESPACE, NAMESPACE_SEP, OPENAI_NAMESPACE
|
||||
from atroposlib.envs.server_handling.openai_server import resolve_openai_configs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue