Skip to content

Commit

Permalink
style: Ruff import order
Browse files Browse the repository at this point in the history
  • Loading branch information
okwilkins committed May 18, 2024
1 parent cdce360 commit e208095
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/rag_cli/cli.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import argparse
import json
import re
import sys
import json
from typing import Any


Expand Down
3 changes: 2 additions & 1 deletion src/rag_cli/embedder.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import json
import logging
import sys
import json
from typing import Optional, TextIO

from ollama import Client


Expand Down
3 changes: 2 additions & 1 deletion src/rag_cli/main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import sys

from rag_cli.cli import cli, list_of_floats
from rag_cli.embedder import run_embedder
from rag_cli.vector_store import run_vector_store
from rag_cli.cli import cli, list_of_floats


def main():
Expand Down
3 changes: 2 additions & 1 deletion src/rag_cli/vector_store.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import logging
import sys
from typing import Any
import uuid
from typing import Any

from qdrant_client import QdrantClient
from qdrant_client.models import PointStruct

Expand Down

0 comments on commit e208095

Please sign in to comment.