Skip to content

Commit

Permalink
Merge pull request #131 from mattsaxon/main
Browse files Browse the repository at this point in the history
Fix
  • Loading branch information
mattsaxon authored May 8, 2022
2 parents d7c2c26 + e2cc759 commit ba62f66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/jablotron80/jablotron.py
Original file line number Diff line number Diff line change
Expand Up @@ -1442,13 +1442,13 @@ def __init__(self, hass: HomeAssistant, config: Dict[str, Any], options: Dict[s
expected_warning_level = logging.DEBUG
else:
expected_warning_level = logging.WARN
except KeyError:
except:
pass

global verbose_connection_logging
try:
verbose_connection_logging = options[CONFIGURATION_VERBOSE_CONNECTION_LOGGING]
except KeyError:
except:
pass

async def initialize(self) -> None:
Expand Down

0 comments on commit ba62f66

Please sign in to comment.