diff --git a/stegano/lsb/generators.py b/stegano/lsb/generators.py index 4b433d2..969e3ec 100644 --- a/stegano/lsb/generators.py +++ b/stegano/lsb/generators.py @@ -71,7 +71,7 @@ def eratosthenes() -> Iterator[int]: """Generate the prime numbers with the sieve of Eratosthenes. https://oeis.org/A000040 """ - d = {} # type: Dict[int, List[int]] + d: Dict[int, List[int]] = {} for i in itertools.count(2): if i in d: for j in d[i]: