]> Cypherpunks repositories - keks.git/commit
Unify import-s grouping
authorSergey Matveev <stargrave@stargrave.org>
Sat, 30 Nov 2024 15:42:49 +0000 (18:42 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Sat, 30 Nov 2024 19:38:56 +0000 (22:38 +0300)
commitdb8355b430aae0d394342fe0dc86eb6cf7d3cf4b8a5b557abfdcfc920acb96f5
treecd4d7cbae02867ff8ee310aec8be78dd371b5a73961b2e2529b4ec9ec8db1b65
parent22627364cf5ed1981f2f1efe6b3012f11213021172cc0a8370b29e261e99d59e
Unify import-s grouping

As PEP8 (https://peps.python.org/pep-0008/) says, imports must be
grouped the following way: standard libraries, related third-party,
local application ones. "typing" is native library (since some modern
version), not third-party one.

Also, it is not explicitly noted anywhere, but imports are sorted with
ignored character case.
pyac/tests/test_blob.py
pyac/tests/test_errors.py
pyac/tests/test_float.py
pyac/tests/test_int.py
pyac/tests/test_list.py
pyac/tests/test_map.py
pyac/tests/test_str.py
pyac/tests/test_symmetric.py
pyac/tests/test_tai.py
pyac/tests/test_uuid.py