From 5c699f1f9dca7c8c42220feb317388a8c2642d28 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sat, 21 Aug 2021 13:37:47 -0400 Subject: [PATCH] Wrap a long comment --- beets/library.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beets/library.py b/beets/library.py index f2e92af5b..54ff7eae9 100644 --- a/beets/library.py +++ b/beets/library.py @@ -38,8 +38,8 @@ from beets.dbcore import types import beets # To use the SQLite "blob" type, it doesn't suffice to provide a byte -# string; SQLite treats that as encoded text. Wrapping it in a `memoryview` tells it -# that we actually mean non-text data. +# string; SQLite treats that as encoded text. Wrapping it in a +# `memoryview` tells it that we actually mean non-text data. BLOB_TYPE = memoryview log = logging.getLogger('beets')