From 1c276393d695f969f4600cb3adc49af71168d513 Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sun, 10 Sep 2017 23:24:08 +0200 Subject: Docstring improvements --- stdnum/sm/coe.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'stdnum/sm') diff --git a/stdnum/sm/coe.py b/stdnum/sm/coe.py index cb3e487..f40ffaa 100644 --- a/stdnum/sm/coe.py +++ b/stdnum/sm/coe.py @@ -58,8 +58,8 @@ def compact(number): def validate(number): - """Checks to see if the number provided is a valid number. This checks - the length and formatting.""" + """Check if the number is a valid COE. This checks the length and + formatting.""" number = compact(number) if len(number) > 5 or len(number) == 0: raise InvalidLength() @@ -71,8 +71,7 @@ def validate(number): def is_valid(number): - """Checks to see if the number provided is a valid number. This - checks the length, formatting and check digit.""" + """Check if the number is a valid COE.""" try: return bool(validate(number)) except ValidationError: -- cgit v1.2.3