Skip to content

Commit d550888

Browse files
committed
Fix import sorting
1 parent 2bcd347 commit d550888

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

src/neo4j_genai/core/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import asyncio
3434
import enum
3535
import logging
36-
from typing import Any, Awaitable, Callable, Optional, AsyncGenerator
36+
from typing import Any, AsyncGenerator, Awaitable, Callable, Optional
3737

3838
from pydantic import BaseModel
3939

tests/unit/test_core_orchestrator.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import pytest
2-
3-
from neo4j_genai.core.graph import Node, Graph
4-
from neo4j_genai.core.pipeline import Orchestrator, Component, Pipeline, RunStatus
2+
from neo4j_genai.core.pipeline import Component, Orchestrator, Pipeline, RunStatus
53

64

75
@pytest.fixture(scope="function")

tests/unit/test_core_pipeline.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
from __future__ import annotations
2-
from typing import Any
2+
33
from unittest.mock import AsyncMock
44

55
import pytest
6-
76
from neo4j_genai.core.pipeline import Component, Pipeline
87

98

0 commit comments

Comments
 (0)