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/fi | |
parent | 1c276393d695f969f4600cb3adc49af71168d513 (diff) |
Make import ordering consistent
Diffstat (limited to 'stdnum/fi')
-rw-r--r-- | stdnum/fi/__init__.py | 2 | ||||
-rw-r--r-- | stdnum/fi/hetu.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/stdnum/fi/__init__.py b/stdnum/fi/__init__.py index eab8d0d..4659040 100644 --- a/stdnum/fi/__init__.py +++ b/stdnum/fi/__init__.py @@ -22,5 +22,5 @@ # provide vat as an alias from stdnum.fi import alv as vat -from stdnum.fi import ytunnus as businessid from stdnum.fi import hetu as personalid +from stdnum.fi import ytunnus as businessid diff --git a/stdnum/fi/hetu.py b/stdnum/fi/hetu.py index 580fe6c..88230dd 100644 --- a/stdnum/fi/hetu.py +++ b/stdnum/fi/hetu.py @@ -40,8 +40,8 @@ InvalidComponent: ... '131052A308T' """ -import re import datetime +import re from stdnum.exceptions import * from stdnum.util import clean |