From 31c81f6539969a5eba864d3305f9fb7bf716a367 Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 2 Feb 2022 12:13:27 -0800 Subject: Used isort to sort imports. Also added to the git pre-commit hook. --- string_utils.py | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'string_utils.py') diff --git a/string_utils.py b/string_utils.py index 9a20466..55e6731 100644 --- a/string_utils.py +++ b/string_utils.py @@ -30,26 +30,17 @@ import base64 import contextlib # type: ignore import datetime import io -from itertools import zip_longest import json import logging import numbers import random import re import string -from typing import ( - Any, - Callable, - Dict, - Iterable, - List, - Optional, - Sequence, - Tuple, -) import unicodedata -from uuid import uuid4 import warnings +from itertools import zip_longest +from typing import Any, Callable, Dict, Iterable, List, Optional, Sequence, Tuple +from uuid import uuid4 import list_utils -- cgit v1.3