Mercurial > hgrepos > Python > apps > py-cutils
changeset 95:fc2dd6afd594
Style: canonical global variable and import ordering
| author | Franz Glasner <f.glasner@feldmann-mg.com> |
|---|---|
| date | Thu, 21 Apr 2022 18:52:53 +0200 |
| parents | 8352da172a3e |
| children | 59253a1e6ef2 |
| files | cutils/shasum.py |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/cutils/shasum.py Thu Apr 21 16:01:19 2022 +0200 +++ b/cutils/shasum.py Thu Apr 21 18:52:53 2022 +0200 @@ -9,8 +9,6 @@ from __future__ import print_function, absolute_import -from . import (__version__, __revision__) - __all__ = [] @@ -34,6 +32,8 @@ import stat import sys +from . import (__version__, __revision__) + PY2 = sys.version_info[0] < 3
