From b4613ed6f4c99c2dce0ab4959efd8cdac584e32b Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Thu, 2 Jan 2020 17:38:32 -0800 Subject: [PATCH] Update umid_parser.py Removed type annotation which seems to die in Python 3.5 --- wavinfo/umid_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wavinfo/umid_parser.py b/wavinfo/umid_parser.py index 150a14b..50cb8a5 100644 --- a/wavinfo/umid_parser.py +++ b/wavinfo/umid_parser.py @@ -51,7 +51,7 @@ class UMIDParser: @property def material_number_creation_method(self) -> str: - method_byte: int = self.raw_umid[11] + method_byte = self.raw_umid[11] method_byte = (method_byte << 4) & 0xf if method_byte == 0x0: return 'undefined'