changeset 2154:b6a8289b1d1e

reformat
author drewp@bigasterisk.com
date Wed, 17 May 2023 19:55:15 -0700
parents a1b30c3463b4
children 092967f313e1
files light9/collector/collector.py
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/light9/collector/collector.py	Wed May 17 19:36:07 2023 -0700
+++ b/light9/collector/collector.py	Wed May 17 19:55:15 2023 -0700
@@ -1,15 +1,16 @@
+import logging
 import time
-import logging
 from typing import cast, List, Dict, Tuple, Optional, Set
 
 from rdflib import Graph, Literal
+from rdfdb.syncedgraph.syncedgraph import SyncedGraph
 
-from light9.collector.device import toOutputAttrs, resolve
+from light9.collector.device import resolve, toOutputAttrs
 from light9.collector.output import Output as OutputInstance
 from light9.collector.weblisteners import WebListeners
 from light9.namespaces import L9, RDF
-from rdfdb.syncedgraph.syncedgraph import SyncedGraph
-from light9.newtypes import ClientType, ClientSessionType, OutputUri, DeviceUri, DeviceClass, DmxIndex, DmxMessageIndex, DeviceAttr, OutputAttr, OutputValue, UnixTime, OutputRange
+from light9.newtypes import (ClientSessionType, ClientType, DeviceAttr, DeviceClass, DeviceUri, DmxIndex, DmxMessageIndex, OutputAttr, OutputRange, OutputUri,
+                             OutputValue, UnixTime)
 
 log = logging.getLogger('collector')