Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/stdnum/hr/oib.py
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2017-09-10 23:24:08 +0200
committerArthur de Jong <arthur@arthurdejong.org>2017-09-11 20:54:31 +0200
commit1c276393d695f969f4600cb3adc49af71168d513 (patch)
treebfe9e373d9212ef43f06de953f8d12bb3d413ef4 /stdnum/hr/oib.py
parent2cc39ea459dcd712462113e12ceb5eda27de9ecb (diff)
Docstring improvements
Diffstat (limited to 'stdnum/hr/oib.py')
-rw-r--r--stdnum/hr/oib.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/stdnum/hr/oib.py b/stdnum/hr/oib.py
index c78dede..9c21e15 100644
--- a/stdnum/hr/oib.py
+++ b/stdnum/hr/oib.py
@@ -47,8 +47,8 @@ def compact(number):
def validate(number):
- """Checks to see if the number provided is a valid OIB number. This
- checks the length, formatting and check digit."""
+ """Check if the number is a valid OIB number. This checks the length,
+ formatting and check digit."""
number = compact(number)
if not number.isdigit():
raise InvalidFormat()
@@ -59,8 +59,7 @@ def validate(number):
def is_valid(number):
- """Checks to see if the number provided is a valid OIB number. This
- checks the length, formatting and check digit."""
+ """Check if the number is a valid OIB number."""
try:
return bool(validate(number))
except ValidationError: