summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2020-04-09 00:10:27 +0100
committerStephen Finucane <stephen@that.guru>2020-04-09 10:10:58 +0100
commitabfd2df5485d313a2835b60afdeb40731448b5b0 (patch)
tree39e9c1099e5730b272bef2f2f5604b01062f4ab3
parentfeefa470fcd9b09701fd9345c1a350e8b7a4281e (diff)
downloadpatchwork-abfd2df5485d313a2835b60afdeb40731448b5b0.tar
patchwork-abfd2df5485d313a2835b60afdeb40731448b5b0.tar.gz
Remove __future__ imports
All of these are defaults in Python 3 [1]. [1] https://docs.python.org/3.6/library/__future__.html Signed-off-by: Stephen Finucane <stephen@that.guru>
-rw-r--r--patchwork/migrations/0001_initial.py9
-rw-r--r--patchwork/migrations/0002_fix_patch_state_default_values.py3
-rw-r--r--patchwork/migrations/0003_add_check_model.py4
-rw-r--r--patchwork/migrations/0004_add_delegation_rule_model.py3
-rw-r--r--patchwork/migrations/0005_unselectable_maintainer_projects.py3
-rw-r--r--patchwork/migrations/0006_add_patch_diff.py3
-rw-r--r--patchwork/migrations/0007_move_comment_content_to_patch_content.py3
-rw-r--r--patchwork/migrations/0008_add_email_mixin.py3
-rw-r--r--patchwork/migrations/0009_add_submission_model.py3
-rw-r--r--patchwork/migrations/0010_migrate_data_from_submission_to_patch.py3
-rw-r--r--patchwork/migrations/0011_remove_temp_fields.py3
-rw-r--r--patchwork/migrations/0012_add_coverletter_model.py3
-rw-r--r--patchwork/migrations/0013_slug_check_context.py3
-rw-r--r--patchwork/migrations/0014_remove_userprofile_primary_project.py3
-rw-r--r--patchwork/migrations/0015_add_series_models.py3
-rw-r--r--patchwork/migrations/0016_series_project.py3
-rw-r--r--patchwork/migrations/0017_improved_delegation_rule_docs.py3
-rw-r--r--patchwork/migrations/0018_add_event_model.py4
-rw-r--r--patchwork/migrations/0019_userprofile_show_ids.py3
-rw-r--r--patchwork/migrations/0020_tag_show_column.py3
-rw-r--r--patchwork/migrations/0021_django_1_10_fixes.py3
-rw-r--r--patchwork/migrations/0022_add_subject_match_to_project.py3
-rw-r--r--patchwork/migrations/0023_timezone_unify.py3
-rw-r--r--patchwork/migrations/0024_patch_patch_project.py3
-rw-r--r--patchwork/migrations/0025_add_regex_validators.py4
-rw-r--r--patchwork/migrations/0026_add_user_bundles_backref.py3
-rw-r--r--patchwork/migrations/0027_remove_series_ordering.py3
-rw-r--r--patchwork/migrations/0028_add_comment_date_index.py3
-rw-r--r--patchwork/migrations/0029_add_list_covering_index.py3
-rw-r--r--patchwork/migrations/0030_add_submission_covering_index.py3
-rw-r--r--patchwork/migrations/0031_add_patch_series_fields.py3
-rw-r--r--patchwork/migrations/0032_migrate_data_from_series_patch_to_patch.py3
-rw-r--r--patchwork/migrations/0033_remove_patch_series_model.py3
-rw-r--r--patchwork/migrations/0034_project_list_archive_url.py3
-rw-r--r--patchwork/migrations/0035_project_list_archive_url_format.py3
-rw-r--r--patchwork/migrations/0036_project_commit_url_format.py3
-rw-r--r--patchwork/migrations/0038_state_slug.py4
-rw-r--r--patchwork/migrations/0040_add_related_patches.py3
38 files changed, 7 insertions, 117 deletions
diff --git a/patchwork/migrations/0001_initial.py b/patchwork/migrations/0001_initial.py
index 295fa76..581f126 100644
--- a/patchwork/migrations/0001_initial.py
+++ b/patchwork/migrations/0001_initial.py
@@ -1,11 +1,10 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
+import datetime
+from django.conf import settings
from django.db import models, migrations
-import datetime
-import patchwork.models
import django.db.models.deletion
-from django.conf import settings
+
+import patchwork.models
class Migration(migrations.Migration):
diff --git a/patchwork/migrations/0002_fix_patch_state_default_values.py b/patchwork/migrations/0002_fix_patch_state_default_values.py
index f02c507..e42f622 100644
--- a/patchwork/migrations/0002_fix_patch_state_default_values.py
+++ b/patchwork/migrations/0002_fix_patch_state_default_values.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import models, migrations
import django.db.models.deletion
diff --git a/patchwork/migrations/0003_add_check_model.py b/patchwork/migrations/0003_add_check_model.py
index d296e91..f8f5a67 100644
--- a/patchwork/migrations/0003_add_check_model.py
+++ b/patchwork/migrations/0003_add_check_model.py
@@ -1,8 +1,6 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
+import datetime
from django.db import models, migrations
-import datetime
from django.conf import settings
import django.db.models.deletion
diff --git a/patchwork/migrations/0004_add_delegation_rule_model.py b/patchwork/migrations/0004_add_delegation_rule_model.py
index 717c10d..01682b5 100644
--- a/patchwork/migrations/0004_add_delegation_rule_model.py
+++ b/patchwork/migrations/0004_add_delegation_rule_model.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
from django.conf import settings
import django.db.models.deletion
diff --git a/patchwork/migrations/0005_unselectable_maintainer_projects.py b/patchwork/migrations/0005_unselectable_maintainer_projects.py
index 7d6be1b..2406820 100644
--- a/patchwork/migrations/0005_unselectable_maintainer_projects.py
+++ b/patchwork/migrations/0005_unselectable_maintainer_projects.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
diff --git a/patchwork/migrations/0006_add_patch_diff.py b/patchwork/migrations/0006_add_patch_diff.py
index 118cf13..61ed296 100644
--- a/patchwork/migrations/0006_add_patch_diff.py
+++ b/patchwork/migrations/0006_add_patch_diff.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
import django.db.models.deletion
diff --git a/patchwork/migrations/0007_move_comment_content_to_patch_content.py b/patchwork/migrations/0007_move_comment_content_to_patch_content.py
index 45776a3..7c49475 100644
--- a/patchwork/migrations/0007_move_comment_content_to_patch_content.py
+++ b/patchwork/migrations/0007_move_comment_content_to_patch_content.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import connection, migrations
diff --git a/patchwork/migrations/0008_add_email_mixin.py b/patchwork/migrations/0008_add_email_mixin.py
index e7ffd16..05be9c7 100644
--- a/patchwork/migrations/0008_add_email_mixin.py
+++ b/patchwork/migrations/0008_add_email_mixin.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
diff --git a/patchwork/migrations/0009_add_submission_model.py b/patchwork/migrations/0009_add_submission_model.py
index f3468e6..c394304 100644
--- a/patchwork/migrations/0009_add_submission_model.py
+++ b/patchwork/migrations/0009_add_submission_model.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
diff --git a/patchwork/migrations/0010_migrate_data_from_submission_to_patch.py b/patchwork/migrations/0010_migrate_data_from_submission_to_patch.py
index c3e25b9..3b80233 100644
--- a/patchwork/migrations/0010_migrate_data_from_submission_to_patch.py
+++ b/patchwork/migrations/0010_migrate_data_from_submission_to_patch.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations
diff --git a/patchwork/migrations/0011_remove_temp_fields.py b/patchwork/migrations/0011_remove_temp_fields.py
index ffe73da..d759632 100644
--- a/patchwork/migrations/0011_remove_temp_fields.py
+++ b/patchwork/migrations/0011_remove_temp_fields.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
import django.db.models.deletion
diff --git a/patchwork/migrations/0012_add_coverletter_model.py b/patchwork/migrations/0012_add_coverletter_model.py
index a89cabd..76c7d5d 100644
--- a/patchwork/migrations/0012_add_coverletter_model.py
+++ b/patchwork/migrations/0012_add_coverletter_model.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
import django.db.models.deletion
diff --git a/patchwork/migrations/0013_slug_check_context.py b/patchwork/migrations/0013_slug_check_context.py
index c20ed73..ecf6fec 100644
--- a/patchwork/migrations/0013_slug_check_context.py
+++ b/patchwork/migrations/0013_slug_check_context.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
diff --git a/patchwork/migrations/0014_remove_userprofile_primary_project.py b/patchwork/migrations/0014_remove_userprofile_primary_project.py
index 6c6dc43..15aea2f 100644
--- a/patchwork/migrations/0014_remove_userprofile_primary_project.py
+++ b/patchwork/migrations/0014_remove_userprofile_primary_project.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations
diff --git a/patchwork/migrations/0015_add_series_models.py b/patchwork/migrations/0015_add_series_models.py
index 32596c3..1fd1e01 100644
--- a/patchwork/migrations/0015_add_series_models.py
+++ b/patchwork/migrations/0015_add_series_models.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
import django.db.models.deletion
diff --git a/patchwork/migrations/0016_series_project.py b/patchwork/migrations/0016_series_project.py
index 8f28ea7..6380576 100644
--- a/patchwork/migrations/0016_series_project.py
+++ b/patchwork/migrations/0016_series_project.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
import django.db.models.deletion
diff --git a/patchwork/migrations/0017_improved_delegation_rule_docs.py b/patchwork/migrations/0017_improved_delegation_rule_docs.py
index 95ae854..20bfb91 100644
--- a/patchwork/migrations/0017_improved_delegation_rule_docs.py
+++ b/patchwork/migrations/0017_improved_delegation_rule_docs.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
diff --git a/patchwork/migrations/0018_add_event_model.py b/patchwork/migrations/0018_add_event_model.py
index e03cc40..181f89d 100644
--- a/patchwork/migrations/0018_add_event_model.py
+++ b/patchwork/migrations/0018_add_event_model.py
@@ -1,7 +1,5 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
import datetime
+
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
diff --git a/patchwork/migrations/0019_userprofile_show_ids.py b/patchwork/migrations/0019_userprofile_show_ids.py
index b7563b3..c88c9de 100644
--- a/patchwork/migrations/0019_userprofile_show_ids.py
+++ b/patchwork/migrations/0019_userprofile_show_ids.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
diff --git a/patchwork/migrations/0020_tag_show_column.py b/patchwork/migrations/0020_tag_show_column.py
index e191ca6..56278d7 100644
--- a/patchwork/migrations/0020_tag_show_column.py
+++ b/patchwork/migrations/0020_tag_show_column.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
diff --git a/patchwork/migrations/0021_django_1_10_fixes.py b/patchwork/migrations/0021_django_1_10_fixes.py
index 79e7726..90bc10d 100644
--- a/patchwork/migrations/0021_django_1_10_fixes.py
+++ b/patchwork/migrations/0021_django_1_10_fixes.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations
diff --git a/patchwork/migrations/0022_add_subject_match_to_project.py b/patchwork/migrations/0022_add_subject_match_to_project.py
index 9ca8224..1596d22 100644
--- a/patchwork/migrations/0022_add_subject_match_to_project.py
+++ b/patchwork/migrations/0022_add_subject_match_to_project.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
diff --git a/patchwork/migrations/0023_timezone_unify.py b/patchwork/migrations/0023_timezone_unify.py
index c73d324..be9213c 100644
--- a/patchwork/migrations/0023_timezone_unify.py
+++ b/patchwork/migrations/0023_timezone_unify.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
import datetime
from django.db import migrations, models
diff --git a/patchwork/migrations/0024_patch_patch_project.py b/patchwork/migrations/0024_patch_patch_project.py
index 7e5f097..8df5191 100644
--- a/patchwork/migrations/0024_patch_patch_project.py
+++ b/patchwork/migrations/0024_patch_patch_project.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
import django.db.models.deletion
diff --git a/patchwork/migrations/0025_add_regex_validators.py b/patchwork/migrations/0025_add_regex_validators.py
index 145ae38..0615cc2 100644
--- a/patchwork/migrations/0025_add_regex_validators.py
+++ b/patchwork/migrations/0025_add_regex_validators.py
@@ -1,7 +1,5 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
+
import patchwork.models
diff --git a/patchwork/migrations/0026_add_user_bundles_backref.py b/patchwork/migrations/0026_add_user_bundles_backref.py
index fc233b6..3c649d9 100644
--- a/patchwork/migrations/0026_add_user_bundles_backref.py
+++ b/patchwork/migrations/0026_add_user_bundles_backref.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
diff --git a/patchwork/migrations/0027_remove_series_ordering.py b/patchwork/migrations/0027_remove_series_ordering.py
index ef6c169..ab725cf 100644
--- a/patchwork/migrations/0027_remove_series_ordering.py
+++ b/patchwork/migrations/0027_remove_series_ordering.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations
diff --git a/patchwork/migrations/0028_add_comment_date_index.py b/patchwork/migrations/0028_add_comment_date_index.py
index e6fd807..fbb4d7f 100644
--- a/patchwork/migrations/0028_add_comment_date_index.py
+++ b/patchwork/migrations/0028_add_comment_date_index.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
diff --git a/patchwork/migrations/0029_add_list_covering_index.py b/patchwork/migrations/0029_add_list_covering_index.py
index c7c19f5..bd84e27 100644
--- a/patchwork/migrations/0029_add_list_covering_index.py
+++ b/patchwork/migrations/0029_add_list_covering_index.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
diff --git a/patchwork/migrations/0030_add_submission_covering_index.py b/patchwork/migrations/0030_add_submission_covering_index.py
index 3cf009b..05bd642 100644
--- a/patchwork/migrations/0030_add_submission_covering_index.py
+++ b/patchwork/migrations/0030_add_submission_covering_index.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
diff --git a/patchwork/migrations/0031_add_patch_series_fields.py b/patchwork/migrations/0031_add_patch_series_fields.py
index 2f31e56..c4e0436 100644
--- a/patchwork/migrations/0031_add_patch_series_fields.py
+++ b/patchwork/migrations/0031_add_patch_series_fields.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
import django.db.models.deletion
diff --git a/patchwork/migrations/0032_migrate_data_from_series_patch_to_patch.py b/patchwork/migrations/0032_migrate_data_from_series_patch_to_patch.py
index 4083847..1cc809c 100644
--- a/patchwork/migrations/0032_migrate_data_from_series_patch_to_patch.py
+++ b/patchwork/migrations/0032_migrate_data_from_series_patch_to_patch.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations
diff --git a/patchwork/migrations/0033_remove_patch_series_model.py b/patchwork/migrations/0033_remove_patch_series_model.py
index 45bd422..7add14d 100644
--- a/patchwork/migrations/0033_remove_patch_series_model.py
+++ b/patchwork/migrations/0033_remove_patch_series_model.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
import django.db.models.deletion
diff --git a/patchwork/migrations/0034_project_list_archive_url.py b/patchwork/migrations/0034_project_list_archive_url.py
index a9e903f..54dbcb5 100644
--- a/patchwork/migrations/0034_project_list_archive_url.py
+++ b/patchwork/migrations/0034_project_list_archive_url.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
diff --git a/patchwork/migrations/0035_project_list_archive_url_format.py b/patchwork/migrations/0035_project_list_archive_url_format.py
index f2353bb..4f6e0f4 100644
--- a/patchwork/migrations/0035_project_list_archive_url_format.py
+++ b/patchwork/migrations/0035_project_list_archive_url_format.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
diff --git a/patchwork/migrations/0036_project_commit_url_format.py b/patchwork/migrations/0036_project_commit_url_format.py
index 988b365..f74d8cf 100644
--- a/patchwork/migrations/0036_project_commit_url_format.py
+++ b/patchwork/migrations/0036_project_commit_url_format.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
diff --git a/patchwork/migrations/0038_state_slug.py b/patchwork/migrations/0038_state_slug.py
index b723208..6355180 100644
--- a/patchwork/migrations/0038_state_slug.py
+++ b/patchwork/migrations/0038_state_slug.py
@@ -1,7 +1,3 @@
-# -*- coding: utf-8 -*-
-
-from __future__ import unicode_literals
-
from django.db import migrations, models, transaction
from django.utils.text import slugify
diff --git a/patchwork/migrations/0040_add_related_patches.py b/patchwork/migrations/0040_add_related_patches.py
index b2bc249..fb0812b 100644
--- a/patchwork/migrations/0040_add_related_patches.py
+++ b/patchwork/migrations/0040_add_related_patches.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
from django.db import migrations, models
import django.db.models.deletion