Skip to content

Commit

Permalink
Don't raise error when service call fails (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
raman325 committed Mar 27, 2024
1 parent 086e888 commit 77db884
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions custom_components/lock_code_manager/providers/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ def call_service(
LOGGER.error(
"Error calling %s.%s service call: %s", domain, service, str(err)
)
raise err

@final
async def async_call_service(
Expand All @@ -214,7 +213,6 @@ async def async_call_service(
LOGGER.error(
"Error calling %s.%s service call: %s", domain, service, str(err)
)
raise err

@final
@callback
Expand Down

0 comments on commit 77db884

Please sign in to comment.