diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2017-09-10 23:24:08 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2017-09-11 20:54:31 +0200 |
commit | 1c276393d695f969f4600cb3adc49af71168d513 (patch) | |
tree | bfe9e373d9212ef43f06de953f8d12bb3d413ef4 /stdnum/is_/vsk.py | |
parent | 2cc39ea459dcd712462113e12ceb5eda27de9ecb (diff) |
Docstring improvements
Diffstat (limited to 'stdnum/is_/vsk.py')
-rw-r--r-- | stdnum/is_/vsk.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdnum/is_/vsk.py b/stdnum/is_/vsk.py index 0baf895..e4cc552 100644 --- a/stdnum/is_/vsk.py +++ b/stdnum/is_/vsk.py @@ -44,8 +44,8 @@ def compact(number): def validate(number): - """Checks to see if the number provided is a valid VAT number. This - checks the length and formatting.""" + """Check if the number provided is a valid VAT number. This checks the + length and formatting.""" number = compact(number) if not number.isdigit(): raise InvalidFormat() @@ -55,8 +55,8 @@ def validate(number): def is_valid(number): - """Checks to see if the number provided is a valid VAT number. This - checks the length and formatting.""" + """Check if the number provided is a valid VAT number. This checks the + length and formatting.""" try: return bool(validate(number)) except ValidationError: |