Fix missing encoding pragma on python files

This commit is contained in:
jo 2021-05-27 15:21:02 +02:00
parent 0cd499eee1
commit ac17db97fc
85 changed files with 85 additions and 0 deletions

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from .authentication import *
from .celery import *
from .countries import *

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import hashlib
from django.contrib import auth
from django.contrib.auth.models import AbstractBaseUser, Permission

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models
from .files import File
from .smart_blocks import SmartBlock

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models
from .files import File

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models
from .authentication import User
from .files import File

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models
from .files import File

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models
from .playlists import Playlist
from .files import File

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models
from .files import File

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
GUEST = 'G'
DJ = 'H'
PROGRAM_MANAGER = 'P'

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from django.db import models
from django.contrib.auth import get_user_model
from .schedule import Schedule