From 4327cc814e20908e8ed5b24f150d7d1af3d0d560 Mon Sep 17 00:00:00 2001 From: nareshnootoo Date: Tue, 27 Sep 2016 10:21:45 +0530 Subject: [PATCH] Fixed class description --- voluptuous/validators.py | 1 - 1 file changed, 1 deletion(-) diff --git a/voluptuous/validators.py b/voluptuous/validators.py index c31e2c0..406a98c 100644 --- a/voluptuous/validators.py +++ b/voluptuous/validators.py @@ -805,7 +805,6 @@ class Number(object): >>> schema = Schema({"number" : Number(precision=6, scale=2)}) >>> out_ = schema({"number": '1234.01'}) - Decimal('1234.01') """ def __init__(self, precision=None, scale=None, msg=None):