From e6e44decf9a8a723c0342d545e22042a2c1065d5 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 30 Sep 2021 10:47:53 -0700 Subject: [PATCH] Updates migration --- bookwyrm/book_search.py | 1 + ...move_connector_local.py => 0102_remove_connector_local.py} | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) rename bookwyrm/migrations/{0097_remove_connector_local.py => 0102_remove_connector_local.py} (70%) diff --git a/bookwyrm/book_search.py b/bookwyrm/book_search.py index 91a4e67a..6c89b61f 100644 --- a/bookwyrm/book_search.py +++ b/bookwyrm/book_search.py @@ -144,6 +144,7 @@ class SearchResult: confidence: int = 1 def __repr__(self): + # pylint: disable=consider-using-f-string return "".format( self.key, self.title, self.author ) diff --git a/bookwyrm/migrations/0097_remove_connector_local.py b/bookwyrm/migrations/0102_remove_connector_local.py similarity index 70% rename from bookwyrm/migrations/0097_remove_connector_local.py rename to bookwyrm/migrations/0102_remove_connector_local.py index fc04bcce..bd0dd920 100644 --- a/bookwyrm/migrations/0097_remove_connector_local.py +++ b/bookwyrm/migrations/0102_remove_connector_local.py @@ -1,4 +1,4 @@ -# Generated by Django 3.2.4 on 2021-09-14 22:10 +# Generated by Django 3.2.5 on 2021-09-30 17:46 from django.db import migrations @@ -6,7 +6,7 @@ from django.db import migrations class Migration(migrations.Migration): dependencies = [ - ("bookwyrm", "0096_merge_20210912_0044"), + ("bookwyrm", "0101_auto_20210929_1847"), ] operations = [