Remove python encoding pragma

This commit is contained in:
jo 2021-05-28 12:25:05 +02:00
parent 813cbac60d
commit b26de72704
96 changed files with 0 additions and 110 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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