Skip to content

Commit 0271376

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 91a38ba commit 0271376

9 files changed

+0
-9
lines changed

categories/migrations/0001_initial.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55

66
class Migration(migrations.Migration):
7-
87
dependencies = [
98
("contenttypes", "0001_initial"),
109
]

categories/migrations/0002_auto_20170217_1111.py

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77

88
class Migration(migrations.Migration):
9-
109
dependencies = [
1110
("categories", "0001_initial"),
1211
]

categories/migrations/0003_auto_20200306_1050.py

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66

77
class Migration(migrations.Migration):
8-
98
dependencies = [
109
("contenttypes", "0002_remove_content_type_name"),
1110
("categories", "0002_auto_20170217_1111"),

categories/migrations/0004_auto_20200517_1832.py

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66

77
class Migration(migrations.Migration):
8-
98
dependencies = [
109
("contenttypes", "0002_remove_content_type_name"),
1110
("categories", "0003_auto_20200306_1050"),

categories/tests/test_models.py

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
class TestCategoryThumbnail(TestCase):
1111
def test_thumbnail(self):
12-
1312
file_name = "test_image.jpg"
1413

1514
with open(os.path.join(os.path.dirname(__file__), file_name), "rb") as f:

categories/tests/test_templatetags.py

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88

99
class CategoryTagsTest(TestCase):
10-
1110
fixtures = ["musicgenres.json"]
1211

1312
def render_template(self, template_string, context={}):

example/simpletext/migrations/0001_initial.py

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88

99
class Migration(migrations.Migration):
10-
1110
initial = True
1211

1312
dependencies = []

example/simpletext/migrations/0002_auto_20171204_0721.py

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88

99
class Migration(migrations.Migration):
10-
1110
dependencies = [
1211
("categories", "0002_auto_20170217_1111"),
1312
("simpletext", "0001_initial"),

example/simpletext/migrations/0003_auto_20200306_0928.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55

66
class Migration(migrations.Migration):
7-
87
dependencies = [
98
("simpletext", "0002_auto_20171204_0721"),
109
]

0 commit comments

Comments
 (0)