diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2017-09-10 23:40:04 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2017-09-11 20:54:34 +0200 |
commit | e468c1beae5cdacbb05540e39a5924bbc7acc09f (patch) | |
tree | 662bc714ed60d9740e8431935592ea6109775c46 /stdnum/gb | |
parent | 1c276393d695f969f4600cb3adc49af71168d513 (diff) |
Make import ordering consistent
Diffstat (limited to 'stdnum/gb')
-rw-r--r-- | stdnum/gb/nhs.py | 2 | ||||
-rw-r--r-- | stdnum/gb/upn.py | 2 | ||||
-rw-r--r-- | stdnum/gb/vat.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/stdnum/gb/nhs.py b/stdnum/gb/nhs.py index 137d7b7..3460010 100644 --- a/stdnum/gb/nhs.py +++ b/stdnum/gb/nhs.py @@ -41,8 +41,8 @@ InvalidChecksum: ... '943 476 5870' """ -from stdnum.util import clean from stdnum.exceptions import * +from stdnum.util import clean def compact(number): diff --git a/stdnum/gb/upn.py b/stdnum/gb/upn.py index bfc4f7e..224082c 100644 --- a/stdnum/gb/upn.py +++ b/stdnum/gb/upn.py @@ -48,8 +48,8 @@ Traceback (most recent call last): InvalidComponent: ... """ -from stdnum.util import clean from stdnum.exceptions import * +from stdnum.util import clean # The allowed characters in an UPN. diff --git a/stdnum/gb/vat.py b/stdnum/gb/vat.py index 192cc79..539e2f9 100644 --- a/stdnum/gb/vat.py +++ b/stdnum/gb/vat.py @@ -35,8 +35,8 @@ InvalidChecksum: ... '980 7806 84' """ -from stdnum.util import clean from stdnum.exceptions import * +from stdnum.util import clean def compact(number): |