Skip to content

Commit

Permalink
Black and ruff CSVPointsSource tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cmalinmayor committed May 16, 2024
1 parent 1b1a698 commit 011e5ef
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions tests/cases/csv_points_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@

import numpy as np
import pytest
import unittest

from gunpowder import (
ArraySpec,
BatchRequest,
CsvPointsSource,
GraphKey,
Expand Down Expand Up @@ -47,16 +45,11 @@ def test_pipeline3(test_points):
fake_points_file, fake_points = test_points

points_key = GraphKey("TEST_POINTS")
voxel_size = Coordinate((1, 1))
spec = ArraySpec(voxel_size=voxel_size, interpolatable=True)

csv_source = CsvPointsSource(
fake_points_file,
points_key,
spatial_cols=[
0,
1,
],
spatial_cols=[0, 1],
delimiter="\t",
points_spec=GraphSpec(roi=Roi(shape=Coordinate((100, 100)), offset=(0, 0))),
)
Expand Down

0 comments on commit 011e5ef

Please sign in to comment.