From 0f367a435ad6ab8164e513f4fcb70bf5736b1fa3 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 23 Sep 2024 06:58:33 -0700 Subject: [PATCH] formatting --- jc/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/utils.py b/jc/utils.py index f5ef0db5..cdd26e52 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -456,7 +456,7 @@ def convert_size_to_int( # https://github.com/xolox/python-humanfriendly/issues/26 normalized_unit = normalized_unit.rstrip('s') - # Handle POSIX mode units where `k`, `m`, etc. are treated as bindary + # Handle POSIX mode units where `k`, `m`, etc. are treated as binary # https://www.gnu.org/software/coreutils/manual/html_node/Block-size.html if len(normalized_unit) == 1 and posix_mode: normalized_unit = normalized_unit + 'ib'