Rhasspy Hermes App unexpected keyword "encoding"

Hello,
i am trying to use the rhasspy-hermes-app library, but even in the simpelst setup it faile:

Traceback (most recent call last):
  File "/home/jonathan/.local/lib/python3.9/site-packages/rhasspyhermes_app/__init__.py", line 208, in on_raw_message
    nlu_intent = NluIntent.from_json(payload)
  File "/home/jonathan/.local/lib/python3.9/site-packages/dataclasses_json/api.py", line 72, in from_json
    kvs = json.loads(s,
  File "/usr/lib/python3.9/json/__init__.py", line 359, in loads
    return cls(**kw).decode(s)
TypeError: __init__() got an unexpected keyword argument 'encoding'

My Code:

from rhasspyhermes_app import HermesApp
app = HermesApp("HomeAssistant", port=12183)

@app.on_intent("GetTemperature")
def handle_home_assistant(intent):
        print("called")

app.run()

What could be the problem? I am using the newest rhasspy-hermes-app lib, as well as the newest rhasspy version

Thanks a lot in advance!

Ok, i could resolve this by errors by deleting one line in the from _json function of dataclasses_json in api.py. Just remove encoding=encoding in the json.loads call. Probably one should instead add s.decode(encoding). But I never made an pull request yet and i did not see any issue regarding this problem in the github of dataclasses_json. Could somebody maybe guide me?

Thanks a lot in advance!