From 2385f669f8bb878224e84a945b506ddcd730e257 Mon Sep 17 00:00:00 2001 From: Cuan Date: Wed, 2 Mar 2022 05:45:01 -0500 Subject: [PATCH] Alphabetized import statements --- bin/sshync.py | 6 +++--- bin/sshyp | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/sshync.py b/bin/sshync.py index 9f5d76a..f911ec0 100755 --- a/bin/sshync.py +++ b/bin/sshync.py @@ -1,13 +1,13 @@ #!/bin/python3 -# sshync 2022.03.02.unreleased14 +# sshync 2022.03.02.unreleased15 # external modules from os import path, system, walk -from os.path import getmtime, join, expanduser -from sys import exit as s_exit +from os.path import expanduser, getmtime, join from pathlib import Path +from sys import exit as s_exit # utility functions diff --git a/bin/sshyp b/bin/sshyp index 6cff4e7..1e6914d 100755 --- a/bin/sshyp +++ b/bin/sshyp @@ -3,12 +3,12 @@ # external modules from os import environ, listdir, path, remove, system, walk -from shutil import copy, get_terminal_size, move, rmtree -from sys import argv, exit as s_exit from pathlib import Path import random +from shutil import copy, get_terminal_size, move, rmtree import sshync import string +from sys import argv, exit as s_exit from textwrap import fill