Add missing type hint

This commit is contained in:
Jan Petykiewicz 2018-07-21 14:03:16 -07:00
parent b1844d6b0d
commit af60d73427

View File

@ -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.