s/import Image/from PIL import Image/g

This commit is contained in:
j 2016-06-25 20:36:20 +02:00
commit 2cec1b9ad5
14 changed files with 21 additions and 21 deletions

View file

@ -1,9 +1,10 @@
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
from __future__ import division
import Image
import os
from PIL import Image
ZONE_INDEX = []
for pixel_index in range(64):
x, y = pixel_index % 8, int(pixel_index / 8)