From 9e6d15a209aa542661febfac5ca0da43deb12243 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:43:38 -0500 Subject: [PATCH] spelling: specifier Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- python_libs/pebble-loghash/pebble/loghashing/dehashing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_libs/pebble-loghash/pebble/loghashing/dehashing.py b/python_libs/pebble-loghash/pebble/loghashing/dehashing.py index 98ca9b82..bde69e3d 100644 --- a/python_libs/pebble-loghash/pebble/loghashing/dehashing.py +++ b/python_libs/pebble-loghash/pebble/loghashing/dehashing.py @@ -167,7 +167,7 @@ def dehash_str(hashed_info, lookup_dict): if formatted_string == hashed_info: formatted_string = lookup_dict.get(str(int(match.group('hash_key'), 16)), hashed_info) - # For each argument, substitute a C-style format specififier in the string + # For each argument, substitute a C-style format specifier in the string for arg in parse_args(match.group('arg_list')): formatted_string = FORMAT_TAG_PATTERN.sub(arg, formatted_string, 1)