From e468c1beae5cdacbb05540e39a5924bbc7acc09f Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sun, 10 Sep 2017 23:40:04 +0200 Subject: Make import ordering consistent --- stdnum/gb/nhs.py | 2 +- stdnum/gb/upn.py | 2 +- stdnum/gb/vat.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'stdnum/gb') 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): -- cgit v1.2.3