Skip to content

Commit adba9c7

Browse files
committed
Removed future unicode_literals imports.
1 parent 793b0ca commit adba9c7

File tree

70 files changed

+0
-140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+0
-140
lines changed

raster/admin.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import unicode_literals
2-
31
from django import forms
42
from django.contrib import admin, messages
53
from django.http import HttpResponseRedirect

raster/algebra/const.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
"""
22
Define all mappings between operators and string representations.
33
"""
4-
from __future__ import unicode_literals
5-
64
import numpy
75

86
ALGEBRA_PIXEL_TYPE_GDAL = 7

raster/algebra/parser.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import unicode_literals
2-
31
import keyword
42
import operator
53
from functools import reduce

raster/const.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import unicode_literals
2-
31
from PIL import ImageEnhance
42

53
IMG_ENHANCEMENTS = {

raster/exceptions.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import unicode_literals
2-
31
from django.core.exceptions import SuspiciousOperation
42

53

raster/migrations/0001_initial.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
42
from django.contrib.gis.db import models
53
from django.db import migrations
64

raster/migrations/0002_auto_20140925_0723.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
42
from django.db import migrations, models
53

64

raster/migrations/0003_rastertile_level.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
42
from django.db import migrations, models
53

64

raster/migrations/0004_rasterlayermetadata.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
42
from django.db import migrations, models
53

64

raster/migrations/0005_auto_20141014_0955.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
42
from django.db import migrations
53

64

0 commit comments

Comments
 (0)