This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Description
I have code like this:
class IotaAdapter(Adapter):
client = Iota('https://nodes.devnet.iota.org:443', testnet=True)
Where Adapter is an abstract class. (class Adapter(ABC): [...])
I am getting the error:
iota.api.InvalidCommand: Iota does not support 'isabstractmethod' command.
It works without a problem if I don't inherit from Adapter.
Anyone knows how I can fix this?