Force isort to treat typing in the py3.5 style, not py3.4

This commit is contained in:
Raphael Michel
2016-08-13 21:06:02 +02:00
parent 34212841e2
commit 5031393136
15 changed files with 17 additions and 14 deletions

View File

@@ -1,13 +1,13 @@
import sys
import uuid
from decimal import Decimal
from typing import Tuple
from django.db import models
from django.db.models import Q
from django.utils.functional import cached_property
from django.utils.timezone import now
from django.utils.translation import ugettext_lazy as _
from typing import Tuple
from pretix.base.i18n import I18nCharField, I18nTextField
from pretix.base.models.base import LoggedModel