Skip to content

Commit

Permalink
fix github actions building
Browse files Browse the repository at this point in the history
  • Loading branch information
xiuliren committed Apr 27, 2023
1 parent 2e585a0 commit 3d1ac4f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions chunkflow/volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@

from cloudvolume import CloudVolume
from chunkflow.lib.utils import str_to_dict
from .lib.cartesian_coordinate import BoundingBox, Cartesian, BoundingBoxes, PhysicalBoudingBox
from .lib.cartesian_coordinate import \
BoundingBox, Cartesian, BoundingBoxes, PhysicalBoudingBox
from .chunk import Chunk


Expand Down Expand Up @@ -109,7 +110,8 @@ def block_size(self):

@cached_property
def physical_bounding_box(self) -> PhysicalBoudingBox:
return PhysicalBoundingBox(self.start, self.stop, self.voxel_size)
return PhysicalBoudingBox(
self.start, self.stop, self.voxel_size)

@cached_property
def block_bounding_boxes(self) -> BoundingBoxes:
Expand Down

0 comments on commit 3d1ac4f

Please sign in to comment.