Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 66d4b32

Browse files
committed
Simplify Generator[] annotation
1 parent 4e0d7a9 commit 66d4b32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wwvb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ def _get_dut1_info(cls, year: int, days: int, old_time: WWVBMinute | None = None
729729
return round(get_dut1(d) * 10) * 100, isls(d)
730730

731731

732-
def _bcd_bits(n: int) -> Generator[bool, None, None]:
732+
def _bcd_bits(n: int) -> Generator[bool]:
733733
"""Return the bcd representation of n, starting with the least significant bit"""
734734
while True:
735735
d = n % 10

0 commit comments

Comments
 (0)