Changeset - 101bcb57b80f
[Not reviewed]
default
0 2 0
Drew Perttula - 6 years ago 2019-06-01 01:13:54
drewp@bigasterisk.com
2 files changed with 5 insertions and 3 deletions:
0 comments (0 inline, 0 general)
bin/keyboardcomposer
Show inline comments
 
@@ -530,14 +530,15 @@ class KeyboardComposer(tk.Frame, SubClie
 

	
 
    def unhighlight_row(self, row):
 
        row = self.rows[row]
 
        row['bg'] = 'black'
 

	
 
    def get_levels(self):
 
        return dict([(uri, box.getVal())
 
                     for uri, box in list(self.subbox.items())])
 
        return dict([
 
            (uri, box.getVal()) for uri, box in list(self.subbox.items())
 
        ])
 

	
 
    def get_output_settings(self, _graph=None):
 
        _graph = _graph or self.graph
 
        outputSettings = []
 
        for setting in _graph.objects(self.session, L9['subSetting']):
 
            effect = _graph.value(setting, L9['sub'])
light9/vidref/musictime.py
Show inline comments
 
@@ -63,13 +63,14 @@ class MusicTime(object):
 
    def pollMusicTime(self):
 

	
 
        @inlineCallbacks
 
        def cb(response):
 

	
 
            if response.code != 200:
 
                raise ValueError("%s %s", response.code, (yield response.content()))
 
                raise ValueError("%s %s", response.code,
 
                                 (yield response.content()))
 

	
 
            position = yield response.json()
 

	
 
            # this is meant to be the time when the server gave me its
 
            # report, and I don't know if that's closer to the
 
            # beginning of my request or the end of it (or some
0 comments (0 inline, 0 general)