From 2c930571706f626a1a19726811856bb41b2c20af Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 19 Feb 2015 08:06:26 +0000 Subject: Delete trailing whitespace. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5583 a436a847-0d15-0410-975c-d299462d15a1 --- scripts/ingen.py | 9 ++++----- scripts/ingenams | 14 +++++++------- 2 files changed, 11 insertions(+), 12 deletions(-) (limited to 'scripts') diff --git a/scripts/ingen.py b/scripts/ingen.py index 8eb67d9d..7f82b799 100644 --- a/scripts/ingen.py +++ b/scripts/ingen.py @@ -166,14 +166,14 @@ class Remote(Interface): raise Error('%s' % klass, cause) raise Error(fmt, cause) - + def send(self, msg): # Send message to server payload = msg if sys.version_info[0] == 3: payload = bytes(msg, 'utf-8') self.sock.send(self.msgencode(msg)) - + # Receive response and parse into a model response_str = self.recv() response_model = rdflib.Graph() @@ -202,7 +202,7 @@ class Remote(Interface): for b in blank_closure: for t in response_model.triples([b, None, None]): response_model.remove(t) - + # Remove triples describing responses from response model for i in response_desc: response_model.remove(i) @@ -216,7 +216,7 @@ class Remote(Interface): a patch:Get ; patch:subject . ''' % path) - + def put(self, path, body): return self.send(''' [] @@ -266,4 +266,3 @@ class Remote(Interface): a patch:Delete ; patch:subject . ''' % path) - diff --git a/scripts/ingenams b/scripts/ingenams index 27990a2c..4a6a048c 100755 --- a/scripts/ingenams +++ b/scripts/ingenams @@ -59,7 +59,7 @@ class World: index = self.server.model.value(i[0], ingen.NS.lv2['index'], None) ports += [[int(index), i[0]]] return ports - + def input_by_id(self, mod_id, port_id): mod_uri = rdflib.URIRef(self.server.server_base + self.mod_sym(mod_id)) @@ -95,7 +95,7 @@ class World: return outputs[port_index][1] return None - + def create_arcs(self): for (head_port_id, tail_port_id, head_mod_id, tail_mod_id, @@ -118,7 +118,7 @@ class Special: SCMCV = 30 SCQUANTIZER = 31 ADVMCV = 35 - + # Module types list, indexed by numeric ID in file # Except where otherwise commented, these correspond to internal modules, # and the string is the suffix of the corresponding AMS LV2 plugin URI @@ -141,12 +141,12 @@ module_types = [ "slew", "quantizer", "pcmin", - "cvs", + "cvs", "sh", "vcorgan", "dynamicwaves", "advenv", - "wavout", + "wavout", "scope", "spectrum", "vcswitch", @@ -156,7 +156,7 @@ module_types = [ "scmcv", # Scala module (different line format) "scquantizer", # Scala module (different line format) "stereomix", - "conv", + "conv", "vcenv", "advmcv", "function", @@ -208,7 +208,7 @@ def standard_module(world, mod_id, x, y, name, arg): name += 'lin' elif name == 'mix': name += 'er_%dch' % int(arg) - + lv2_uri = ams_prefix + name world.add_block(mod_id, lv2_uri, x, y) -- cgit v1.2.1