Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
jiashenC committed Apr 2, 2023
1 parent 5344133 commit b6037ab
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion eva/plan_nodes/abstract_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from abc import ABC, abstractmethod
from typing import List, Any
from collections import deque
from typing import Any, List

from eva.plan_nodes.types import PlanOprType

Expand Down
7 changes: 6 additions & 1 deletion test/integration_tests/test_insert_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import unittest
from test.util import create_sample_video, file_remove, load_udfs_for_testing, shutdown_ray
from test.util import (
create_sample_video,
file_remove,
load_udfs_for_testing,
shutdown_ray,
)

import numpy as np
import pandas as pd
Expand Down
7 changes: 6 additions & 1 deletion test/integration_tests/test_open.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import unittest
from test.util import create_sample_image, file_remove, load_udfs_for_testing, shutdown_ray
from test.util import (
create_sample_image,
file_remove,
load_udfs_for_testing,
shutdown_ray,
)

import numpy as np
import pandas as pd
Expand Down
5 changes: 1 addition & 4 deletions test/integration_tests/test_pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@
from eva.configuration.configuration_manager import ConfigurationManager
from eva.configuration.constants import EVA_ROOT_DIR
from eva.server.command_handler import execute_query_fetch_all
from eva.udfs.udf_bootstrap_queries import (
Asl_udf_query,
Mvit_udf_query,
)
from eva.udfs.udf_bootstrap_queries import Asl_udf_query, Mvit_udf_query


@pytest.mark.notparallel
Expand Down

0 comments on commit b6037ab

Please sign in to comment.