From f8c0d46c5ef517e10c0ed4276b1444b5fa316915 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Sat, 5 Dec 2020 15:07:04 -0800 Subject: [PATCH] Alphabetize these functions. --- voussoirkit/winglob.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/voussoirkit/winglob.py b/voussoirkit/winglob.py index 1dfb543..2daa5a4 100644 --- a/voussoirkit/winglob.py +++ b/voussoirkit/winglob.py @@ -18,8 +18,8 @@ def fix(pattern): pattern = re.sub(r'(\[|\])', r'[\1]', pattern) return pattern -def glob(pathname, *, recursive=False): - return python_glob.glob(fix(pathname), recursive=recursive) - def fnmatch(name, pat): return python_fnmatch.fnmatch(name, fix(pat)) + +def glob(pathname, *, recursive=False): + return python_glob.glob(fix(pathname), recursive=recursive)