On enlève coding utf-8

This commit is contained in:
Tom Hubrecht 2021-02-07 00:57:26 +01:00
parent 2c92f35a75
commit b6d1ee6aa8
12 changed files with 1 additions and 19 deletions

View file

@ -1,5 +1,3 @@
# coding: utf-8
from tastypie import fields, utils
from tastypie.authentication import SessionAuthentication
from tastypie.resources import ModelResource

View file

@ -1,4 +1,3 @@
# coding: utf-8
from django.core.management.base import BaseCommand, CommandError
from django.db.models import Count

View file

@ -1,4 +1,3 @@
# coding: utf-8
from django.core.management.base import BaseCommand, CommandError
from django.db.models import Count

View file

@ -1,4 +1,3 @@
# coding: utf-8
from django.core.management.base import BaseCommand, CommandError
from django.db.models import Count

View file

@ -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

View file

@ -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

View file

@ -1,5 +1,3 @@
# coding: utf-8
DEPARTEMENTS_DEFAUT = (
("phy", u"Physique"),
("maths", u"Maths"),

View file

@ -1,4 +1,3 @@
# coding: utf-8
import re
from django import template

View file

@ -13,7 +13,6 @@ from .models import AvisLieu, Lieu, Normalien, Stage, StageMatiere, User
class ExperiENSTestCase(TestCase):
# Dummy database
def setUp(self):

View file

@ -1,5 +1,3 @@
# coding: utf-8
import math
import random
from collections import Counter, defaultdict

View file

@ -1,5 +1,3 @@
# coding: utf-8
import json
import logging
from datetime import date

View file

@ -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()