Skip to content

Commit d65f1dc

Browse files
s1ckFlorentinD
andcommitted
Run makestyle ..
Co-Authored-By: Florentin Dörre <florentin.dorre@neotechnology.com>
1 parent e8c00d4 commit d65f1dc

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

graphdatascience/query_runner/arrow_graph_constructor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
from pyarrow import Table
1212
from tqdm.auto import tqdm
1313

14-
from .graph_constructor import GraphConstructor
1514
from .arrow_version import ArrowVersion
15+
from .graph_constructor import GraphConstructor
1616

1717

1818
class ArrowGraphConstructor(GraphConstructor):

graphdatascience/query_runner/arrow_query_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
from ..call_parameters import CallParameters
1616
from ..server_version.server_version import ServerVersion
1717
from .arrow_graph_constructor import ArrowGraphConstructor
18-
from .graph_constructor import GraphConstructor
1918
from .arrow_version import ArrowVersion, UnsupportedArrowVersion
19+
from .graph_constructor import GraphConstructor
2020
from .query_runner import QueryRunner
2121
from graphdatascience.server_version.compatible_with import (
2222
IncompatibleServerVersionError,

graphdatascience/tests/unit/test_arrow_version.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import pytest
22

33
from graphdatascience.graph_data_science import ArrowQueryRunner
4-
from graphdatascience.query_runner.arrow_version import ArrowVersion, UnsupportedArrowVersion
4+
from graphdatascience.query_runner.arrow_version import (
5+
ArrowVersion,
6+
UnsupportedArrowVersion,
7+
)
58

69

710
@pytest.mark.parametrize("arrow_version", [ArrowVersion.V1, ArrowVersion.ALPHA])

0 commit comments

Comments
 (0)