Skip to content

Commit

Permalink
Remove Python 2.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
mpasternak committed Feb 23, 2018
1 parent 68cfc3d commit 4e4244c
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion multiseek/logic.py
@@ -1,5 +1,5 @@
# -*- encoding: utf-8 -*-
from __future__ import unicode_literals


from decimal import Decimal
import decimal
Expand Down
2 changes: 1 addition & 1 deletion multiseek/migrations/0001_initial.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals


from django.db import migrations, models
from django.conf import settings
Expand Down
2 changes: 1 addition & 1 deletion multiseek/models.py
@@ -1,4 +1,4 @@
from __future__ import unicode_literals

from django.db import models
from django.db.models import Q
from django.utils.translation import ugettext_lazy as _
Expand Down
2 changes: 1 addition & 1 deletion multiseek/tests/test_logic.py
@@ -1,5 +1,5 @@
# -*- encoding: utf-8 -*-
from __future__ import unicode_literals

import json
from unittest import TestCase

Expand Down
2 changes: 1 addition & 1 deletion multiseek/util.py
@@ -1,5 +1,5 @@
# -*- encoding: utf-8 -*-
from __future__ import unicode_literals

from builtins import str as text


Expand Down
2 changes: 1 addition & 1 deletion multiseek/views.py
@@ -1,5 +1,5 @@
# -*- encoding: utf-8 -*-
from __future__ import unicode_literals


import json
from builtins import str as text
Expand Down
2 changes: 0 additions & 2 deletions test_project/test_app/migrations/0001_initial.py
@@ -1,7 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2017-06-12 09:03
from __future__ import unicode_literals

from django.db import migrations, models
import django.db.models.deletion

Expand Down

0 comments on commit 4e4244c

Please sign in to comment.