Skip to content

Commit 5bef5d1

Browse files
committed
Made doc/ pyflakes-clean.
- Legacy-Id: 7462
1 parent 4bb4eb7 commit 5bef5d1

85 files changed

Lines changed: 211 additions & 320 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

ietf/community/display.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import datetime
22

3-
from django.db.models import Q
43
from django.core.urlresolvers import reverse as urlreverse
54

6-
from ietf.doc.models import DocAlias, DocEvent
5+
from ietf.doc.models import DocAlias
76

87

98
class DisplayField(object):

ietf/community/management/commands/update_doc_change_dates.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import sys
22

33
from django.core.management.base import BaseCommand
4-
from django.db.models import Q
54

65
from ietf.community.constants import SIGNIFICANT_STATES
76
from ietf.community.models import DocumentChangeDates

ietf/community/migrations/0001_initial_migration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
from south.db import db
33
from django.db import models
4-
from ietf.community.models import *
4+
#from ietf.community.models import *
55

66
class Migration:
77

ietf/community/migrations/0002_add_display_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
from south.db import db
3-
from django.db import models
4-
from ietf.community.models import *
3+
from django.db import models # pyflakes:ignore
4+
from ietf.community.models import * # pyflakes:ignore
55

66
class Migration:
77

ietf/community/migrations/0003_add_notifications.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
from south.db import db
3-
from django.db import models
4-
from ietf.community.models import *
3+
from django.db import models # pyflakes:ignore
4+
from ietf.community.models import * # pyflakes:ignore
55

66
class Migration:
77

ietf/community/migrations/0004_refactor_notifications_with_docevent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
from south.db import db
3-
from django.db import models
4-
from ietf.community.models import *
3+
from django.db import models # pyflakes:ignore
4+
from ietf.community.models import * # pyflakes:ignore
55

66
class Migration:
77

ietf/community/migrations/0005_auto__add_field_communitylist_secret.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
from south.db import db
3-
from django.db import models
4-
from ietf.community.models import *
3+
from django.db import models # pyflakes:ignore
4+
from ietf.community.models import * # pyflakes:ignore
55

66
class Migration:
77

ietf/community/migrations/0006_auto__add_field_communitylist_cached.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
from south.db import db
3-
from django.db import models
4-
from ietf.community.models import *
3+
from django.db import models # pyflakes:ignore
4+
from ietf.community.models import * # pyflakes:ignore
55

66
class Migration:
77

ietf/community/migrations/0007_auto__add_unique_rule_community_list_rule_type_value.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# encoding: utf-8
2-
import datetime
2+
import datetime # pyflakes:ignore
33
from south.db import db
44
from south.v2 import SchemaMigration
5-
from django.db import models
5+
from django.db import models # pyflakes:ignore
66

77
class Migration(SchemaMigration):
88

ietf/community/rules.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from django.db.models import Q
2-
31
from ietf.doc.models import Document
42
from ietf.group.models import Group
53
from ietf.person.models import Person

0 commit comments

Comments
 (0)