From 644c814695df6d7db26cfced5217f53d65b54758 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Tue, 30 Apr 2019 11:49:39 -0400 Subject: [PATCH] Clarify docstring for Float's digits parameters Introduced in #3238. --- beets/dbcore/types.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beets/dbcore/types.py b/beets/dbcore/types.py index e08b417a7..c37def875 100644 --- a/beets/dbcore/types.py +++ b/beets/dbcore/types.py @@ -173,7 +173,8 @@ class Id(Integer): class Float(Type): - """A basic floating-point type. Supports padding. + """A basic floating-point type. The `digits` parameter specifies how + many decimal places to use in the human-readable representation. """ sql = u'REAL' query = query.NumericQuery