We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebaabd7 commit 69370c0Copy full SHA for 69370c0
src/labthings/views/__init__.py
@@ -134,7 +134,9 @@ class ActionView(View):
134
} # Mapping of Thing Description ops to class methods
135
_cls_tags = {"actions"}
136
_deque = Deque() # Action queue
137
- _emergency_pool = Pool() # Emergency thread pool (common to all ActionView subclasses)
+ _emergency_pool = (
138
+ Pool()
139
+ ) # Emergency thread pool (common to all ActionView subclasses)
140
141
def __init__(self, *args, **kwargs):
142
super().__init__(*args, **kwargs)
0 commit comments