From 76c188b5189375b3b3b7c92f31491990e29a1669 Mon Sep 17 00:00:00 2001 From: Sam James Date: Wed, 9 Feb 2022 10:47:54 +0000 Subject: */*: reformat with latest Black 22.1.0 Signed-off-by: Sam James --- pym/gentoolkit/eclean/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/gentoolkit/eclean/cli.py b/pym/gentoolkit/eclean/cli.py index bb6deeb..2ad2ae9 100644 --- a/pym/gentoolkit/eclean/cli.py +++ b/pym/gentoolkit/eclean/cli.py @@ -309,7 +309,7 @@ def parseSize(size): @raise ParseArgsException: in case of failure """ - units = {"G": (1024 ** 3), "M": (1024 ** 2), "K": 1024, "B": 1} + units = {"G": (1024**3), "M": (1024**2), "K": 1024, "B": 1} try: match = re.match(r"^(?P\d+)(?P[GMKBgmkb])?$", size) size = int(match.group("value")) -- cgit v1.2.3