Skip to content

Commit 9dabee5

Browse files
committed
Fix 3
1 parent 0bd8a5e commit 9dabee5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

homeassistant/components/arcam_fmj/device_trigger.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def _handle_event(event: Event) -> None:
7171
job,
7272
{
7373
"trigger": {
74-
**trigger_data, # type: ignore[arg-type] # https://github.com/python/mypy/issues/9117
74+
**trigger_data,
7575
**config,
7676
"description": f"{DOMAIN} - {entity_id}",
7777
}

homeassistant/components/sentry/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def process_before_send(
206206
"channel": channel,
207207
"custom_components": "\n".join(sorted(custom_components)),
208208
"integrations": "\n".join(sorted(integrations)),
209-
**system_info, # type: ignore[arg-type]
209+
**system_info,
210210
},
211211
}
212212
)

homeassistant/components/tuya/diagnostics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def _async_device_as_dict(hass: HomeAssistant, device: TuyaDevice) -> dict[str,
155155

156156
for entity_entry in hass_entities:
157157
state = hass.states.get(entity_entry.entity_id)
158-
state_dict = None
158+
state_dict: dict[str, Any] | None = None
159159
if state:
160160
state_dict = dict(state.as_dict())
161161

0 commit comments

Comments
 (0)