From c10eb8f69dbde91d947b25d16c8596efee06d13a Mon Sep 17 00:00:00 2001 From: discopatrick Date: Wed, 26 Apr 2017 23:23:21 +0100 Subject: [PATCH] Keep docstring line <= 79 characters --- beets/dbcore/query.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beets/dbcore/query.py b/beets/dbcore/query.py index 949908bc2..e7001dcb2 100644 --- a/beets/dbcore/query.py +++ b/beets/dbcore/query.py @@ -544,8 +544,8 @@ class Period(object): def __init__(self, date, precision): """Create a period with the given date (a `datetime` object) and - precision (a string, one of "year", "month", "day", "hour", "minute", or - "second"). + precision (a string, one of "year", "month", "day", "hour", "minute", + or "second"). """ if precision not in Period.precisions: raise ValueError(u'Invalid precision {0}'.format(precision))