Skip to content
This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Commit 536e623

Browse files
author
Ian Johnson
committed
add future imports for atlas_pipeline
1 parent 3ba58f0 commit 536e623

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

lucid/scratch/atlas_pipeline/grid.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
"""
22
Internal pipeline functions that takes in a layout and produces grid cells, organized into tiles
33
"""
4+
from __future__ import absolute_import
5+
from __future__ import division
6+
from __future__ import print_function
47

58
import math
69
import numpy as np

lucid/scratch/atlas_pipeline/pipeline.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
"""
2+
Take user input data and run it through the grid and tile rendering pipeline
3+
"""
4+
from __future__ import absolute_import
5+
from __future__ import division
6+
from __future__ import print_function
7+
18
import json
29
import numpy as np
310
import lucid.scratch.atlas_pipeline.render_tile as render_tile

lucid/scratch/atlas_pipeline/render_tile.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
"""
22
Controller that runs the user defined render function on each cell in a tile
33
"""
4+
from __future__ import absolute_import
5+
from __future__ import division
6+
from __future__ import print_function
7+
48
from PIL import Image
59
import math
610

0 commit comments

Comments
 (0)