From 45b23e8b3cd8abae77e5e605695298ca8fe7a323 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 16 Mar 2026 12:18:49 -0700 Subject: [PATCH] version bump --- jc/parsers/hashsum.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/jc/parsers/hashsum.py b/jc/parsers/hashsum.py index ba661827..7e96b904 100644 --- a/jc/parsers/hashsum.py +++ b/jc/parsers/hashsum.py @@ -71,13 +71,12 @@ Examples: ] """ import re - import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.3' description = 'hashsum command parser (`md5sum`, `shasum`, etc.)' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -163,7 +162,4 @@ def parse(data, raw=False, quiet=False): } raw_output.append(item) - if raw: - return raw_output - else: - return _process(raw_output) + return raw_output if raw else _process(raw_output)