From af60d734275e067fc51b10c813fc720c9ad2178d Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sat, 21 Jul 2018 14:03:16 -0700 Subject: [PATCH] Add missing type hint --- fatamorgana/basic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fatamorgana/basic.py b/fatamorgana/basic.py index 33c8f4d..0b288a2 100644 --- a/fatamorgana/basic.py +++ b/fatamorgana/basic.py @@ -1174,7 +1174,7 @@ class ArbitraryRepetition: self.y_displacements = y_displacements @staticmethod - def read(stream: io.BufferedIOBase, repetition_type) -> 'ArbitraryRepetition': + def read(stream: io.BufferedIOBase, repetition_type: int) -> 'ArbitraryRepetition': """ Read an ArbitraryRepetition from a stream.