Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Pylint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
annatisch committed Aug 7, 2018
1 parent cb4ce1e commit 0c27572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure/eventprocessorhost/eh_partition_pump.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ async def on_closing_async(self, reason):
await self.running
except TypeError:
_logger.debug("No partition pump running.")
except Exception as err:
except Exception as err: # pylint: disable=broad-except
_logger.info("Error on closing partition pump: {!r}".format(err))
await self.clean_up_clients_async()

Expand Down

0 comments on commit 0c27572

Please sign in to comment.