Skip to content

Commit

Permalink
pylint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vg12345 committed Sep 29, 2024
1 parent 14917aa commit 0ea2c43
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def get_telemetry(self):
elif telemetry_data is not None:
# when we want to keep the abs
self.data_store.save(telemetry_data,self.data_store.get_filename_abs())
except Exception as exception_error:
self.logger.error(f"Failed to store telemetry data with error {exception_error}")
except Exception as exception_error: # pylint: disable=broad-exception-caught
self.logger.error(f"Failed to store telemetry data with error {exception_error}")

# update previous telemetry data
if telemetry_data is not None:
Expand Down

0 comments on commit 0ea2c43

Please sign in to comment.