Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/stdnum/at
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2018-03-17 16:43:49 +0100
committerArthur de Jong <arthur@arthurdejong.org>2018-03-17 16:43:49 +0100
commitab15e206abe8778eaf8109ddf209ab228c81c79d (patch)
tree7a502d7f3556e874b7a936f7f8de337ef316f829 /stdnum/at
parentee263a5bf54d31efeb123d2ec213f26544a3b25a (diff)
Fix import order
Fixes ee263a5
Diffstat (limited to 'stdnum/at')
-rw-r--r--stdnum/at/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdnum/at/__init__.py b/stdnum/at/__init__.py
index 0b95488..9f09d71 100644
--- a/stdnum/at/__init__.py
+++ b/stdnum/at/__init__.py
@@ -21,5 +21,5 @@
"""Collection of Austrian numbers."""
# provide vat as an alias
-from stdnum.at import uid as vat # noqa: F401
from stdnum.at import postleitzahl as postal_code # noqa: F401
+from stdnum.at import uid as vat # noqa: F401