File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -185,10 +185,11 @@ def _load_inference_pipeline(self) -> None:
185
185
)
186
186
else :
187
187
logger .warning (
188
- "No inference pipeline found. Data will not be streamed to Openlayer."
188
+ "No inference pipeline found. Data will not be streamed to "
189
+ "Openlayer."
189
190
)
190
191
self .inference_pipeline = inference_pipeline
191
- except Exception as exc :
192
+ except Exception as exc : # pylint: disable=broad-except
192
193
logger .error (
193
194
"An error occurred while trying to load the inference pipeline: %s" , exc
194
195
)
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ def create_step(
93
93
if _publish :
94
94
try :
95
95
_streamer .stream_data (data = trace_data , config = config )
96
- except Exception as _ :
96
+ except Exception : # pylint: disable=broad-except
97
97
logger .error ("Could not stream data to Openlayer" )
98
98
else :
99
99
logger .debug ("Ending step %s" , name )
You can’t perform that action at this time.
0 commit comments