From 6ca57ae314e982c73dd5a6697b0b5b5774f9548a Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Wed, 29 Dec 2021 09:43:06 -0800 Subject: [PATCH] Linter fixes --- bookwyrm/tests/views/test_annual_summary.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bookwyrm/tests/views/test_annual_summary.py b/bookwyrm/tests/views/test_annual_summary.py index d62540288..0860d80f3 100644 --- a/bookwyrm/tests/views/test_annual_summary.py +++ b/bookwyrm/tests/views/test_annual_summary.py @@ -1,7 +1,7 @@ """testing the annual summary page""" from datetime import datetime -import pytz from unittest.mock import patch +import pytz from django.contrib.auth.models import AnonymousUser from django.http import Http404 @@ -124,7 +124,7 @@ class AnnualSummary(TestCase): def test_annual_summary_page_with_review(self, *_): """there are so many views, this just makes sure it LOADS""" - self.review = models.Review.objects.create( + models.Review.objects.create( name="Review name", content="test content", rating=3.0,