···151151152152 def __init__(self, data):
153153 """Construct a protocol from a dictionary of calls."""
154154- self.calls = [Call(name, call) for name, call in data.items()]
154154+ self.calls = [Call(name, call) for name, call
155155+ in data.items()
156156+ if not name.startswith("$")]
155157156158157159header = '''// Copyright 2020, Collabora, Ltd.