Trouble connecting a dht sensor over mqtt

Hi,
First of all its the first time i am using mqtt.
I am using the mqtt io add on and the mosquitto broker.
I think i managed that these two are communicating, i had some errors in the log but now the connection is ok.
My setup is on a raspberry pi 3B and i am using the gpios of the raspberry where i also installed home assistant.
I also installed a hacs add on (raspberry pi gpio).

My problem is that i want to connect my dht11 sonsor over mqtt.
I connected it on pin 17, and it already worked directly via gpio and a custom components integration, but it caused problem.

Now i saw that it should be possible to connect it via mqtt.
Here is my mqtt config yml:

mqtt:
  host: 192.168.1.***
  port: 1883
  user: "*********"
  password: "*********"
  
sensor_modules:
  - name: dht11_sensor
    module: dht
    type: dht11
    pin: 17

sensor_inputs:
  - name: temperature
    module: dht11_sensor
    interval: 10
    digits: 4
    type: temperature

This is the log of the mqtt addon:

:48:16] INFO: Starting MQTT IO…
2023-11-13 19:48:28 mqtt_io.main [ERROR] MqttIo crashed!
Traceback (most recent call last):
File “/usr/lib/python3.11/site-packages/mqtt_io/main.py”, line 107, in main
mqtt_gpio.run()
File “/usr/lib/python3.11/site-packages/mqtt_io/server.py”, line 1272, in run
self._init_sensor_modules()
File “/usr/lib/python3.11/site-packages/mqtt_io/server.py”, line 255, in _init_sensor_modules
self.sensor_modules[sens_config[“name”]] = _init_module(
^^^^^^^^^^^^^
File “/usr/lib/python3.11/site-packages/mqtt_io/server.py”, line 115, in _init_module
module = import_module(
^^^^^^^^^^^^^^
File “/usr/lib/python3.11/importlib/init.py”, line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “”, line 1204, in _gcd_import
File “”, line 1176, in _find_and_load
File “”, line 1140, in _find_and_load_unlocked
ModuleNotFoundError: No module named ‘mqtt_io.modules.sensor.dht’
Traceback (most recent call last):
File “”, line 198, in _run_module_as_main
File “”, line 88, in _run_code
File “/usr/lib/python3.11/site-packages/mqtt_io/main.py”, line 115, in
main()
File “/usr/lib/python3.11/site-packages/mqtt_io/main.py”, line 107, in main
mqtt_gpio.run()
File “/usr/lib/python3.11/site-packages/mqtt_io/server.py”, line 1272, in run
self._init_sensor_modules()
File “/usr/lib/python3.11/site-packages/mqtt_io/server.py”, line 255, in _init_sensor_modules
self.sensor_modules[sens_config[“name”]] = _init_module(
^^^^^^^^^^^^^
File “/usr/lib/python3.11/site-packages/mqtt_io/server.py”, line 115, in _init_module
module = import_module(
^^^^^^^^^^^^^^
File “/usr/lib/python3.11/importlib/init.py”, line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “”, line 1204, in _gcd_import
File “”, line 1176, in _find_and_load
File “”, line 1140, in _find_and_load_unlocked
ModuleNotFoundError: No module named ‘mqtt_io.modules.sensor.dht’