From 081799758544fb72179b8d0281ed169ad59b6f25 Mon Sep 17 00:00:00 2001 From: Carter Perez Date: Sun, 17 May 2026 14:11:54 -0400 Subject: [PATCH] Update hash_identifier.py --- PROJECTS/foundations/hash-identifier/hash_identifier.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PROJECTS/foundations/hash-identifier/hash_identifier.py b/PROJECTS/foundations/hash-identifier/hash_identifier.py index b76547d6..959cbd00 100644 --- a/PROJECTS/foundations/hash-identifier/hash_identifier.py +++ b/PROJECTS/foundations/hash-identifier/hash_identifier.py @@ -80,8 +80,8 @@ from rich.table import Table # ============================================================================= # Literal["high", "medium", "low"] is a type hint that says "this string # can ONLY be one of these three values." Mypy will catch typos like -# "hgih" at edit time. We chose Literal over an Enum because Carter's -# style guide prefers Literals for small fixed sets +# "hgih" at edit time. We chose Literal over an Enum because I +# prefer Literals for small fixed sets Confidence = Literal["high", "medium", "low"]