On enlève coding utf-8
This commit is contained in:
parent
2c92f35a75
commit
b6d1ee6aa8
12 changed files with 1 additions and 19 deletions
|
@ -1,5 +1,3 @@
|
|||
# coding: utf-8
|
||||
|
||||
from tastypie import fields, utils
|
||||
from tastypie.authentication import SessionAuthentication
|
||||
from tastypie.resources import ModelResource
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# coding: utf-8
|
||||
from django.core.management.base import BaseCommand, CommandError
|
||||
from django.db.models import Count
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# coding: utf-8
|
||||
from django.core.management.base import BaseCommand, CommandError
|
||||
from django.db.models import Count
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# coding: utf-8
|
||||
from django.core.management.base import BaseCommand, CommandError
|
||||
from django.db.models import Count
|
||||
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11 on 2017-06-20 17:45
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import taggit_autosuggest.managers
|
||||
import tinymce.models
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.2 on 2017-10-02 20:43
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import tinymce.models
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
# coding: utf-8
|
||||
|
||||
DEPARTEMENTS_DEFAUT = (
|
||||
("phy", u"Physique"),
|
||||
("maths", u"Maths"),
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# coding: utf-8
|
||||
import re
|
||||
|
||||
from django import template
|
||||
|
|
|
@ -13,7 +13,6 @@ from .models import AvisLieu, Lieu, Normalien, Stage, StageMatiere, User
|
|||
|
||||
|
||||
class ExperiENSTestCase(TestCase):
|
||||
|
||||
# Dummy database
|
||||
|
||||
def setUp(self):
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
# coding: utf-8
|
||||
|
||||
import math
|
||||
import random
|
||||
from collections import Counter, defaultdict
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
# coding: utf-8
|
||||
|
||||
import json
|
||||
import logging
|
||||
from datetime import date
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
import sys
|
||||
from collections import defaultdict
|
||||
|
||||
from allauth.account.models import EmailAddress
|
||||
from allauth.socialaccount.models import SocialAccount
|
||||
|
||||
from avisstage.models import Normalien
|
||||
|
||||
from collections import defaultdict
|
||||
|
||||
accounts = SocialAccount.objects.all().prefetch_related("user")
|
||||
profils = Normalien.objects.all()
|
||||
addresses = EmailAddress.objects.all()
|
||||
|
|
Loading…
Reference in a new issue