Mercurial > code > home > repos > light9
comparison bin/subcomposer @ 1697:5c04a54df635
fix startup (this might be breaking mypy)
Ignore-this: d81817852cde18bb475ce7be80499b5d
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Thu, 26 Apr 2018 08:20:19 +0000 |
parents | 6fa4288da8a6 |
children | f140153c087c |
comparison
equal
deleted
inserted
replaced
1696:d9337dfe941a | 1697:5c04a54df635 |
---|---|
14 UI edits are caught here and go all the way back to currentSub | 14 UI edits are caught here and go all the way back to currentSub |
15 | 15 |
16 | 16 |
17 """ | 17 """ |
18 from __future__ import division, nested_scopes | 18 from __future__ import division, nested_scopes |
19 | |
20 from run_local import log | |
19 import time, logging | 21 import time, logging |
22 | |
23 log.setLevel(logging.DEBUG) | |
24 | |
20 from optparse import OptionParser | 25 from optparse import OptionParser |
21 import logging, urllib | 26 import logging, urllib |
22 import Tkinter as tk | 27 import Tkinter as tk |
23 import louie as dispatcher | 28 import louie as dispatcher |
24 from twisted.internet import reactor, tksupport, task | 29 from twisted.internet import reactor, tksupport, task |
25 from rdflib import URIRef, RDF, RDFS, Literal | 30 from rdflib import URIRef, RDF, RDFS, Literal |
26 | 31 |
27 from run_local import log | |
28 log.setLevel(logging.DEBUG) | |
29 | |
30 from light9.dmxchanedit import Levelbox | 32 from light9.dmxchanedit import Levelbox |
31 from light9 import dmxclient, Submaster, prof, showconfig, networking | 33 from light9 import dmxclient, Submaster, prof, showconfig, networking |
32 | |
33 from light9.Patch import get_channel_name | 34 from light9.Patch import get_channel_name |
34 from light9.uihelpers import toplevelat | 35 from light9.uihelpers import toplevelat |
35 from rdfdb.syncedgraph import SyncedGraph | 36 from rdfdb.syncedgraph import SyncedGraph |
36 from rdfdb import clientsession | 37 from rdfdb import clientsession |
37 from light9.tkdnd import initTkdnd | 38 from light9.tkdnd import initTkdnd |