diff --git a/blueprintcompiler/ast.py b/blueprintcompiler/ast.py index 132e1b1..6a96b8a 100644 --- a/blueprintcompiler/ast.py +++ b/blueprintcompiler/ast.py @@ -347,11 +347,6 @@ class Signal(AstNode): if object_id is None: return - if object_id in ("true", "false"): - raise CompileError( - "Signal object must be object ID, not boolean value" - ) - if self.root.objects_by_id.get(object_id) is None: raise CompileError( f"Could not find object with ID '{object_id}'"