Skip to content

Conversation

@jacobtylerwalls
Copy link
Member

No description provided.

@jacobtylerwalls jacobtylerwalls added this to the 4.0.5 milestone Jan 3, 2026
@jacobtylerwalls jacobtylerwalls added backport maintenance/4.0.x Skip news 🔇 This change does not require a changelog entry labels Jan 3, 2026
@codecov
Copy link

codecov bot commented Jan 3, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 95.98%. Comparing base (5a770e3) to head (6653e6c).
⚠️ Report is 5 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main   #10798      +/-   ##
==========================================
- Coverage   95.98%   95.98%   -0.01%     
==========================================
  Files         176      176              
  Lines       19566    19566              
==========================================
- Hits        18781    18780       -1     
- Misses        785      786       +1     

see 1 file with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@github-actions

This comment has been minimized.

@jacobtylerwalls
Copy link
Member Author

Inference changed too much; not backporting.

@jacobtylerwalls
Copy link
Member Author

@cdce8p, would you know by eye whether the home assistance primer changes would trace back to the IfExp changes or the generic alias changes?

@jacobtylerwalls
Copy link
Member Author

Bisected it to pylint-dev/astroid@3774c0a

@jacobtylerwalls
Copy link
Member Author

Alright, I'm comfortable with the primer changes, all we're doing is improving inference, meaning #10703 is now fixed, but now other traffic will increase into #9040, which is okay (but maybe counsels against backporting).

@jacobtylerwalls jacobtylerwalls force-pushed the bump-astroid branch 2 times, most recently from 5979557 to e22743b Compare January 10, 2026 14:41
@jacobtylerwalls jacobtylerwalls removed the Skip news 🔇 This change does not require a changelog entry label Jan 10, 2026
@jacobtylerwalls jacobtylerwalls modified the milestones: 4.0.5, 4.1.0 Jan 10, 2026
@github-actions

This comment has been minimized.

Copy link
Member

@Pierre-Sassoulas Pierre-Sassoulas left a comment

Choose a reason for hiding this comment

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

I was also worried by the primer, maybe we need to make #9040 a blocker for 4.1.0 because that's a lot of false positives.

.[testutils,spelling]
# astroid dependency is also defined in pyproject.toml
astroid==4.0.2 # Pinned to a specific version for tests
astroid==4.0.3 # Pinned to a specific version for tests
Copy link
Member

Choose a reason for hiding this comment

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

Shouldn't we choose between the pyproject.toml or this ? (I'm for using the pyproject)

Copy link
Member Author

Choose a reason for hiding this comment

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

Yep I figure the plan is to remove these files?

pyproject.toml Outdated
# All the dependencies of the project will be configured here, once pip fully supports PEP735
# TODO: Remove all requirements.txt files and use this section instead once pip supports PEP735
dependencies = [
# Also upgrade requirements_test_min.txt.
Copy link
Member

Choose a reason for hiding this comment

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

Or we could upgrade those kind of comments

@jacobtylerwalls
Copy link
Member Author

But the new traffic into that issue is just from PEP 695 stuff, I'm not sure we should block on that.

@Pierre-Sassoulas
Copy link
Member

It look like the changes would make 'unexpected-keyword-arg' unusable in home-assistant ?

@jacobtylerwalls
Copy link
Member Author

Because that project is a heavy user of pep 695 and polymorphic dataclasses together, yes.

@Pierre-Sassoulas
Copy link
Member

I'm not sure how common that is, do you have an opinion @DanielNoord ?

@DanielNoord
Copy link
Collaborator

I agree with @jacobtylerwalls, we should probably just release.

Perhaps we can snipe one of our other maintainers with a link to home-assistant (yeah, I'm referring to you Marc) into looking into it 😄
Perhaps we can call it out in the release notes? That we are aware and looking for contributions to fix it?

@cdce8p
Copy link
Member

cdce8p commented Jan 10, 2026

I'm referring to you Marc

I've seen discussion here. Was just preoccupied with some other things this week so haven't had time to look into it yet.

Copy link
Member

@cdce8p cdce8p left a comment

Choose a reason for hiding this comment

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

#10788 should be fixed as well. Could you add this one as a test case too? Maybe it makes sense to inside move them to a dataclass_py312.py file.

@cdce8p
Copy link
Member

cdce8p commented Jan 10, 2026

I just ran my Home Assistant CI setup again to test the latest astroid and pylint commits. Aside from a performance regression, it didn't trigger any errors. That's likely due to the fact that HA disables unexpected-keyword-arg entirely. (I was not involved in that decision.)

Aside from that, I think you guys narrowed down the issue quite well already. My PR fixed an inference bug which now surfaces an old issue #9040 again. Thankfully Python 3.12 isn't the default yet, so I think the impact will be rather contained.

--
~Regarding the performance regression: the latest CI runs increased from 8:05 to over 8:35. I've it bisected to the last five pylint commits already. My intuition would be that it's caused by #10795.

Update: Please disregard the performance comment. Looks like it was just random CI runner variance.

@Pierre-Sassoulas Pierre-Sassoulas added the Maintenance Discussion or action around maintaining pylint or the dev workflow label Jan 10, 2026
@github-actions
Copy link
Contributor

🤖 Effect of this PR on checked open source code: 🤖

Effect on pandas:
The following messages are now emitted:

Details
  1. attribute-defined-outside-init:
    Attribute 'index' defined outside init
    https://github.com/pandas-dev/pandas/blob/13fb87b2870123fda51aa7f67dd1ae0ed635fc26/pandas/core/generic.py#L1351
  2. attribute-defined-outside-init:
    Attribute 'columns' defined outside init
    https://github.com/pandas-dev/pandas/blob/13fb87b2870123fda51aa7f67dd1ae0ed635fc26/pandas/core/generic.py#L1353

The following messages are no longer emitted:

Details
  1. unsupported-membership-test:
    Value 'self.columns._engine' doesn't support membership test
    https://github.com/pandas-dev/pandas/blob/13fb87b2870123fda51aa7f67dd1ae0ed635fc26/pandas/core/generic.py#L4333
  2. redefined-variable-type:
    Redefinition of result type from pandas.core.indexes.base.Index to tuple
    https://github.com/pandas-dev/pandas/blob/13fb87b2870123fda51aa7f67dd1ae0ed635fc26/pandas/core/indexes/base.py#L3471

Effect on astroid:
The following messages are now emitted:

Details
  1. useless-suppression:
    Useless suppression of 'unsubscriptable-object'
    https://github.com/pylint-dev/astroid/blob/7a4cae790527ca3eabf5d62fe6b58cbdc65d6e53/astroid/rebuilder.py#L124

The following messages are no longer emitted:

Details
  1. suppressed-message:
    Suppressed 'unsubscriptable-object' (from line 124)
    https://github.com/pylint-dev/astroid/blob/7a4cae790527ca3eabf5d62fe6b58cbdc65d6e53/astroid/rebuilder.py#L124

Effect on sentry:
The following messages are no longer emitted:

Details
  1. unsupported-membership-test:
    Value 'self.skip_models' doesn't support membership test
    https://github.com/getsentry/sentry/blob/5705509225e7f7ae47bc113fab166f4d04cdb17b/src/sentry/deletions/defaults/group.py#L254

Effect on home-assistant:
The following messages are now emitted:

Details
  1. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/light.py#L118
  2. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/light.py#L118
  3. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/light.py#L118
  4. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L247
  5. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L247
  6. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L247
  7. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L247
  8. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L263
  9. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L263
  10. unexpected-keyword-arg:
    Unexpected keyword argument 'has_entity_name' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L263
  11. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L263
  12. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L279
  13. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L279
  14. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L279
  15. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L279
  16. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L293
  17. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L293
  18. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L306
  19. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L306
  20. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L306
  21. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L306
  22. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L319
  23. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L319
  24. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L319
  25. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L319
  26. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L332
  27. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L332
  28. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L332
  29. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L332
  30. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L345
  31. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L345
  32. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L345
  33. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L345
  34. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L345
  35. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L361
  36. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L361
  37. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L361
  38. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L361
  39. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L361
  40. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L377
  41. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L377
  42. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L377
  43. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/switch.py#L377
  44. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L269
  45. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L269
  46. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L269
  47. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L269
  48. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L269
  49. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L269
  50. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L339
  51. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L339
  52. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L339
  53. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L339
  54. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L339
  55. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L339
  56. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L385
  57. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L385
  58. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L385
  59. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L385
  60. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L385
  61. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L385
  62. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L402
  63. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L402
  64. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L402
  65. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L402
  66. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L402
  67. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L402
  68. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L419
  69. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L419
  70. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L419
  71. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L419
  72. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L419
  73. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L419
  74. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L419
  75. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L436
  76. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L436
  77. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L436
  78. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L436
  79. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L436
  80. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L436
  81. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L452
  82. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L452
  83. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L452
  84. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L452
  85. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L452
  86. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L452
  87. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L452
  88. unexpected-keyword-arg:
    Unexpected keyword argument 'suggested_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L452
  89. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L470
  90. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L470
  91. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L470
  92. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L470
  93. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L470
  94. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L470
  95. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L470
  96. unexpected-keyword-arg:
    Unexpected keyword argument 'suggested_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L470
  97. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L488
  98. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L488
  99. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L488
  100. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L488
  101. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L503
  102. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L503
  103. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L503
  104. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L503
  105. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L516
  106. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L516
  107. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L516
  108. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L516
  109. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L516
  110. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L531
  111. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L531
  112. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L531
  113. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L531
  114. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L531
  115. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L547
  116. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L547
  117. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L547
  118. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L547
  119. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L547
  120. unexpected-keyword-arg:
    Unexpected keyword argument 'suggested_display_precision' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L547
  121. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L563
  122. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L563
  123. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L563
  124. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L563
  125. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L563
  126. unexpected-keyword-arg:
    Unexpected keyword argument 'suggested_display_precision' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L563
  127. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L579
  128. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L579
  129. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L579
  130. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L592
  131. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L592
  132. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L592
  133. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L592
  134. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L606
  135. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L606
  136. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L606
  137. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L620
  138. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L620
  139. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L620
  140. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L620
  141. unexpected-keyword-arg:
    Unexpected keyword argument 'options' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L620
  142. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L634
  143. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L634
  144. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L634
  145. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L634
  146. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L634
  147. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L649
  148. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L649
  149. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L649
  150. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L649
  151. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/sensor.py#L649
  152. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/button.py#L92
  153. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/button.py#L92
  154. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/button.py#L92
  155. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/button.py#L104
  156. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/button.py#L104
  157. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/button.py#L104
  158. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/button.py#L117
  159. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/button.py#L117
  160. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/button.py#L117
  161. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/button.py#L117
  162. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/button.py#L117
  163. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/update.py#L51
  164. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/update.py#L51
  165. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/image.py#L49
  166. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/image.py#L49
  167. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/image.py#L49
  168. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/image.py#L49
  169. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/device_tracker.py#L152
  170. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/unifi/device_tracker.py#L172
  171. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L66
  172. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L66
  173. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L66
  174. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L66
  175. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L66
  176. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L74
  177. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L74
  178. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L74
  179. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L74
  180. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L74
  181. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L74
  182. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L83
  183. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L83
  184. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L83
  185. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L83
  186. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L83
  187. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L83
  188. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L92
  189. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L92
  190. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L92
  191. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L92
  192. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L92
  193. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L92
  194. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L120
  195. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L120
  196. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L120
  197. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L120
  198. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L120
  199. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L120
  200. unexpected-keyword-arg:
    Unexpected keyword argument 'suggested_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L120
  201. unexpected-keyword-arg:
    Unexpected keyword argument 'suggested_display_precision' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L120
  202. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L131
  203. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L131
  204. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L131
  205. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L131
  206. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L131
  207. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L131
  208. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L140
  209. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L140
  210. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L140
  211. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L140
  212. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L140
  213. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L140
  214. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L140
  215. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L150
  216. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L150
  217. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L150
  218. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L150
  219. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L150
  220. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L150
  221. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L150
  222. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L160
  223. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L160
  224. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L160
  225. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L160
  226. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L160
  227. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L160
  228. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L169
  229. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L169
  230. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L169
  231. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L169
  232. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L169
  233. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L169
  234. unexpected-keyword-arg:
    Unexpected keyword argument 'suggested_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L169
  235. unexpected-keyword-arg:
    Unexpected keyword argument 'suggested_display_precision' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L169
  236. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L180
  237. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L180
  238. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L180
  239. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L180
  240. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L180
  241. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L180
  242. unexpected-keyword-arg:
    Unexpected keyword argument 'suggested_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L180
  243. unexpected-keyword-arg:
    Unexpected keyword argument 'suggested_display_precision' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L180
  244. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L191
  245. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L191
  246. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L191
  247. unexpected-keyword-arg:
    Unexpected keyword argument 'state_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L191
  248. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L191
  249. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L191
  250. unexpected-keyword-arg:
    Unexpected keyword argument 'suggested_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L191
  251. unexpected-keyword-arg:
    Unexpected keyword argument 'suggested_display_precision' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L191
  252. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L202
  253. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L202
  254. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L202
  255. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L202
  256. unexpected-keyword-arg:
    Unexpected keyword argument 'options' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/powerwall/sensor.py#L202
  257. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L79
  258. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L79
  259. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L79
  260. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L86
  261. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L86
  262. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L86
  263. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L93
  264. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L93
  265. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L93
  266. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L100
  267. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L100
  268. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L100
  269. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L107
  270. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L107
  271. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L114
  272. unexpected-keyword-arg:
    Unexpected keyword argument 'translation_key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/shelly/button.py#L114
  273. unexpected-keyword-arg:
    Unexpected keyword argument 'key' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/motionblinds_ble/sensor.py#L82
  274. unexpected-keyword-arg:
    Unexpected keyword argument 'device_class' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/motionblinds_ble/sensor.py#L82
  275. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_category' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/motionblinds_ble/sensor.py#L82
  276. unexpected-keyword-arg:
    Unexpected keyword argument 'native_unit_of_measurement' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/motionblinds_ble/sensor.py#L82
  277. unexpected-keyword-arg:
    Unexpected keyword argument 'entity_registry_enabled_default' in constructor call
    https://github.com/home-assistant/core/blob/ce234d69a72a2df8a6826ab3308513d48d7a8890/homeassistant/components/motionblinds_ble/sensor.py#L82
  278. unexpected-keyword...

This comment was truncated because GitHub allows only 65536 characters in a comment.

This comment was generated for commit 6653e6c

@jacobtylerwalls jacobtylerwalls merged commit 5a49a11 into pylint-dev:main Jan 11, 2026
46 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Maintenance Discussion or action around maintaining pylint or the dev workflow

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants