diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2019-02-20 23:37:00 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2019-03-03 15:16:34 +0100 |
commit | 6eadca15146b6dc3e34ea8ba2b886e3ee63ea908 (patch) | |
tree | 5b083f93945ae14842b64456a5526ff4090b98a0 /stdnum/co | |
parent | 9daa1b0cbcfdc74022387430c6f4229485e1ffa8 (diff) |
Switch from import-order to isort
Diffstat (limited to 'stdnum/co')
-rw-r--r-- | stdnum/co/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdnum/co/__init__.py b/stdnum/co/__init__.py index a72d843..de40a0c 100644 --- a/stdnum/co/__init__.py +++ b/stdnum/co/__init__.py @@ -21,5 +21,5 @@ """Collection of Colombian numbers.""" # provide vat and rut as an alias -from stdnum.co import nit as vat # noqa: F401 -from stdnum.co import nit as rut # noqa: F401 +from stdnum.co import nit as vat # noqa: F401, isort:skip +from stdnum.co import nit as rut # noqa: F401, isort:skip |