Skip to content

Commit 69370c0

Browse files
author
Joel Collins
committed
Formatting
1 parent ebaabd7 commit 69370c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/labthings/views/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,9 @@ class ActionView(View):
134134
} # Mapping of Thing Description ops to class methods
135135
_cls_tags = {"actions"}
136136
_deque = Deque() # Action queue
137-
_emergency_pool = Pool() # Emergency thread pool (common to all ActionView subclasses)
137+
_emergency_pool = (
138+
Pool()
139+
) # Emergency thread pool (common to all ActionView subclasses)
138140

139141
def __init__(self, *args, **kwargs):
140142
super().__init__(*args, **kwargs)

0 commit comments

Comments
 (0)