Update hash_identifier.py

This commit is contained in:
Carter Perez 2026-05-17 14:11:54 -04:00 committed by GitHub
parent 7aab0c6faf
commit 0817997585
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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"]