AppDaemon not start Errors

Hello,

AppDaemon not starting.

Log:

[09:23:05] INFO: Starting AppDaemon...
2022-09-11 09:23:27.538830 INFO AppDaemon: AppDaemon Version 4.2.1 starting
2022-09-11 09:23:27.540030 INFO AppDaemon: Python version is 3.10.5
2022-09-11 09:23:27.541689 INFO AppDaemon: Configuration read from: /config/appdaemon/appdaemon.yaml
2022-09-11 09:23:27.542923 INFO AppDaemon: Added log: AppDaemon
2022-09-11 09:23:27.544164 INFO AppDaemon: Added log: Error
2022-09-11 09:23:27.545347 INFO AppDaemon: Added log: Access
2022-09-11 09:23:27.546428 INFO AppDaemon: Added log: Diag
2022-09-11 09:23:29.044888 WARNING AppDaemon: ------------------------------------------------------------
2022-09-11 09:23:29.045695 WARNING AppDaemon: Unexpected error during run()
2022-09-11 09:23:29.048460 WARNING AppDaemon: ------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python3.10/site-packages/appdaemon/__main__.py", line 133, in run
    self.AD = ad.AppDaemon(self.logging, loop, **appdaemon)
  File "/usr/lib/python3.10/site-packages/appdaemon/appdaemon.py", line 245, in __init__
    self.plugins = plugins.Plugins(self, args)
  File "/usr/lib/python3.10/site-packages/appdaemon/plugin_management.py", line 69, in __init__
    if "disable" in self.plugins[name] and self.plugins[name]["disable"] is True:
TypeError: argument of type 'NoneType' is not iterable
2022-09-11 09:23:29.127592 INFO AppDaemon: Previous message repeated 1 times
2022-09-11 09:23:29.136543 INFO AppDaemon: AppDaemon Exited
[09:23:30] INFO: AppDaemon stoped, restarting...

Here’s an example of a working section from appdaemon.yaml
Ensure you have “plugins” key populated as below

appdaemon:
  latitude: 10
  longitude: -60
  elevation: 1
  time_zone: America/Somewhere
  plugins:
    HASS:
      type: hass

thanks !!!