Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Update __init__.py #107

Merged
merged 1 commit into from
Mar 20, 2025
Merged

Update __init__.py #107

merged 1 commit into from
Mar 20, 2025

Conversation

UnoSite
Copy link
Owner

@UnoSite UnoSite commented Mar 20, 2025

No description provided.

@UnoSite UnoSite added the bug-fix Fixed things that didn’t work but now do label Mar 20, 2025
@pull-request-size pull-request-size bot added the size/S Denotes a PR that changes 10-29 lines label Mar 20, 2025
except Exception as e:
_LOGGER.error("Failed to remove Birthdays calendar entity: %s", str(e))
else:
_LOGGER.info("No Birthdays calendar entity found to remove.")
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review:

  1. Improvements:

    • Having a specific exception in the except block would be better for error handling rather than catching all exceptions using Exception.
    • Adding more specific log messages can provide clarity in case of errors.
  2. Bug Risks:

    • No critical bug risks found in the reviewed code section.
  3. Suggestions:

    • Consider logging stack traces in the exception logs for detailed debugging information.
    • Documenting reasons for catching exceptions at these specific points could help future developers understand potential issues and solutions here.

Revised Code Snippet:

    @@ -37,7 +37,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
 
     hass.data.setdefault(DOMAIN, {})[entry.entry_id] = entry.data
 
-    # Forward setup to all necessary platforms
     try:
         await hass.config_entries.async_forward_entry_setups(entry, ["sensor", "binary_sensor", "calendar"])
         _LOGGER.info("Birthdays integration setup complete for entry: %s", entry.entry_id)
@@ -120,5 +119,10 @@ async def _remove_calendar_entity(hass: HomeAssistant):
     calendar_entity = entity_registry.async_get(CALENDAR_ENTITY_ID)
 
     if calendar_entity:
-        entity_registry.async_remove(calendar_entity.entity_id)
-        _LOGGER.info("Birthdays calendar entity removed.")
+        try:
+            entity_registry.async_remove(calendar_entity.entity_id)
+            _LOGGER.info("Birthdays calendar entity removed.")
+        except SpecificException as e:  # Replace SpecificException with the actual exception type
+            _LOGGER.error("Failed to remove Birthdays calendar entity: %s", str(e))
+    else:
+        _LOGGER.info("No Birthdays calendar entity found to remove.")

By making these enhancements and suggestions, the code readability, error handling, and debugging capabilities can be improved.

@UnoSite UnoSite merged commit 04b1ba3 into main Mar 20, 2025
10 checks passed
@UnoSite UnoSite deleted the UnoSite-patch-4 branch March 20, 2025 16:18
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug-fix Fixed things that didn’t work but now do size/S Denotes a PR that changes 10-29 lines
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant