From 9b3cc1d0404ec8b282457914fcf5d7ae7f1be0e1 Mon Sep 17 00:00:00 2001 From: parmentelat Date: Tue, 11 Dec 2018 16:45:21 +0100 Subject: [PATCH] oops, syntax error --- PLC/Method.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PLC/Method.py b/PLC/Method.py index 836eea01..f01271db 100644 --- a/PLC/Method.py +++ b/PLC/Method.py @@ -338,7 +338,7 @@ class Method: # Integers and long integers are also special types. Accept # either int or long types if an int or long is expected. - elif expected_type is int and isinstance(value, int): + elif expected_type is int and isinstance(value, int): pass elif not isinstance(value, expected_type): -- 2.47.0