test coverage fix

pull/1398/head
Chris Caron 2025-08-23 15:24:59 -04:00
parent 1c7b4e0655
commit fde49be1e8
1 changed files with 0 additions and 4 deletions

View File

@ -54,10 +54,6 @@ def zoneinfo(name: str) -> Optional[ZoneInfo]:
try:
return ZoneInfo(name)
except ValueError:
# Just all around bad data; no need to proceed
return None
except ZoneInfoNotFoundError:
pass