Skip to content

Commit

Permalink
Isorted imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowcap committed Aug 20, 2020
1 parent 18eae7e commit 66dfaf4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion batch/pyramid/aggregate.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import rasterio
from rasterio import Affine
from rasterio.io import MemoryFile
from tile_range import tile_range

from pixels import algebra, const, utils
from tile_range import tile_range

logger = logging.getLogger()
logger.setLevel(logging.INFO)
Expand Down
2 changes: 1 addition & 1 deletion batch/pyramid/pyramid.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import os

import boto3
from tile_range import tile_range

from pixels import core, utils
from tile_range import tile_range

# General log setup.
logging.basicConfig(
Expand Down
2 changes: 1 addition & 1 deletion batch/pyramid/pyramid_up.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
import rasterio
from rasterio import Affine
from rasterio.warp import Resampling
from tile_range import tile_range

from pixels import const, utils
from tile_range import tile_range

# Get logger.
logger = logging.getLogger()
Expand Down
2 changes: 1 addition & 1 deletion scripts/save_pixels_prediction_to_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import boto3
import rasterio
from rasterio.io import MemoryFile
from train.train import load_data

from pixels import utils
from train.train import load_data

bucket='tesselo-pixels-results'
project_id='test'
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pixels.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
import unittest
from unittest import mock

import mock_functions
import numpy
from rasterio import Affine
from rasterio.io import MemoryFile

import mock_functions
from pixels import algebra, core, utils
from tests.configs import gen_config, gen_configs

Expand Down

0 comments on commit 66dfaf4

Please sign in to comment.