Skip to content

Commit

Permalink
Fix isort order for formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
benrules3 committed Jul 3, 2024
1 parent e28af51 commit e3472bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
11 changes: 6 additions & 5 deletions compass_sdk/compass.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
from typing import Dict, Iterator, List, Optional, Tuple, Union

import requests
from joblib import Parallel, delayed
from pydantic import BaseModel
from requests.exceptions import InvalidSchema
from tenacity import RetryError, retry, retry_if_not_exception_type, stop_after_attempt, wait_fixed
from tqdm import tqdm

from compass_sdk import (
BatchPutDocumentsInput,
Chunk,
Expand All @@ -25,11 +31,6 @@
DEFAULT_MAX_RETRIES,
DEFAULT_SLEEP_RETRY_SECONDS,
)
from joblib import Parallel, delayed
from pydantic import BaseModel
from requests.exceptions import InvalidSchema
from tenacity import RetryError, retry, retry_if_not_exception_type, stop_after_attempt, wait_fixed
from tqdm import tqdm


@dataclass
Expand Down
1 change: 1 addition & 0 deletions compass_sdk/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from typing import Any, Callable, Dict, Iterable, List, Optional, Union

import requests

from compass_sdk import (
BatchProcessFilesParameters,
CompassDocument,
Expand Down

0 comments on commit e3472bd

Please sign in to comment.