1
0
Fork 0

Remove python 2 compatibility code

Signed-off-by: Alfredos-Panagiotis Damkalis <fredy@fredy.gr>
spacecruft
Alfredos-Panagiotis Damkalis 2020-07-07 14:29:57 +03:00
parent 39befe0dfc
commit 118cb7cadc
30 changed files with 0 additions and 64 deletions

View File

@ -1,7 +1,4 @@
# -*- coding: utf-8 -*-
"""SatNOGS DB Auth0 login module admin class""" """SatNOGS DB Auth0 login module admin class"""
from __future__ import unicode_literals
# from django.contrib import admin # from django.contrib import admin
# Register your models here. # Register your models here.

View File

@ -1,7 +1,4 @@
# -*- coding: utf-8 -*-
"""SatNOGS DB Auth0 login app config""" """SatNOGS DB Auth0 login app config"""
from __future__ import unicode_literals
from django.apps import AppConfig from django.apps import AppConfig

View File

@ -1,7 +1,4 @@
# -*- coding: utf-8 -*-
"""SatNOGS DB Auth0 login module models""" """SatNOGS DB Auth0 login module models"""
from __future__ import unicode_literals
# from django.db import models # from django.db import models
# Create your models here. # Create your models here.

View File

@ -1,7 +1,4 @@
# -*- coding: utf-8 -*-
"""SatNOGS DB Auth0 login module test suites""" """SatNOGS DB Auth0 login module test suites"""
from __future__ import unicode_literals
# from django.test import TestCase # from django.test import TestCase
# Create your tests here. # Create your tests here.

View File

@ -1,6 +1,4 @@
"""SatNOGS DB Auth0 login module views""" """SatNOGS DB Auth0 login module views"""
from __future__ import unicode_literals
from django.shortcuts import render from django.shortcuts import render

View File

@ -1,6 +1,4 @@
"""The core django app for SatNOGS DB""" """The core django app for SatNOGS DB"""
from __future__ import absolute_import
from ._version import get_versions from ._version import get_versions
from .celery import APP as celery_app # noqa from .celery import APP as celery_app # noqa

View File

@ -1,6 +1,4 @@
"""SatNOGS DB API permissions, django rest framework""" """SatNOGS DB API permissions, django rest framework"""
from __future__ import absolute_import
from rest_framework import permissions from rest_framework import permissions

View File

@ -1,6 +1,3 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations from django.db import models, migrations
from django.conf import settings from django.conf import settings
import django.db.models.deletion import django.db.models.deletion

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-01-07 12:40 # Generated by Django 1.11.7 on 2018-01-07 12:40
from __future__ import unicode_literals
import db.base.models import db.base.models
from django.conf import settings from django.conf import settings

View File

@ -1,6 +1,3 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations from django.db import models, migrations

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.10 on 2018-03-04 08:50 # Generated by Django 1.11.10 on 2018-03-04 08:50
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.6 on 2016-05-04 21:04 # Generated by Django 1.9.6 on 2016-05-04 21:04
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models
import django.db.models.deletion import django.db.models.deletion

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2018-09-19 00:28 # Generated by Django 1.11.11 on 2018-09-19 00:28
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-03-02 16:41 # Generated by Django 1.10.5 on 2017-03-02 16:41
from __future__ import unicode_literals
import db.base.models import db.base.models
import django.core.validators import django.core.validators

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2018-12-15 11:30 # Generated by Django 1.11.11 on 2018-12-15 11:30
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.6 on 2017-03-14 18:38 # Generated by Django 1.10.6 on 2017-03-14 18:38
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2019-01-19 16:39 # Generated by Django 1.11.11 on 2019-01-19 16:39
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.6 on 2017-03-23 17:15 # Generated by Django 1.10.6 on 2017-03-23 17:15
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2019-01-21 13:20 # Generated by Django 1.11.11 on 2019-01-21 13:20
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.6 on 2017-05-08 15:49 # Generated by Django 1.10.6 on 2017-05-08 15:49
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2019-03-29 19:11 # Generated by Django 1.11.11 on 2019-03-29 19:11
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models
import django.db.models.deletion import django.db.models.deletion

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.1 on 2017-05-16 21:09 # Generated by Django 1.11.1 on 2017-05-16 21:09
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2019-04-04 04:36 # Generated by Django 1.11.11 on 2019-04-04 04:36
from __future__ import unicode_literals
from django.conf import settings from django.conf import settings
from django.db import migrations, models from django.db import migrations, models

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-01-03 19:31 # Generated by Django 1.11.7 on 2018-01-03 19:31
from __future__ import unicode_literals
import os import os

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-04-20 23:06 # Generated by Django 1.11.20 on 2019-04-20 23:06
from __future__ import unicode_literals
from django.db import migrations from django.db import migrations

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-04-21 01:43 # Generated by Django 1.11.20 on 2019-04-21 01:43
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models
import django.db.models.deletion import django.db.models.deletion

View File

@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-07-02 05:59 # Generated by Django 1.11.20 on 2019-07-02 05:59
from __future__ import unicode_literals
from django.db import migrations, models from django.db import migrations, models

View File

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
#
# satnogs-db documentation build configuration file, created by # satnogs-db documentation build configuration file, created by
# sphinx-quickstart on Fri Dec 19 19:35:32 2014. # sphinx-quickstart on Fri Dec 19 19:35:32 2014.
# #

View File

@ -276,7 +276,6 @@ https://creativecommons.org/publicdomain/zero/1.0/ .
""" """
from __future__ import print_function
try: try:
import configparser import configparser
except ImportError: except ImportError:

View File

@ -276,7 +276,6 @@ https://creativecommons.org/publicdomain/zero/1.0/ .
""" """
from __future__ import print_function
try: try:
import configparser import configparser
except ImportError: except ImportError: