Hi All, I am getting the below error while trying to run my dagger method via dagger call
TypeError: issubclass() arg 1 must be a class
This is raised from inside dagger -
/dagger/mod/_converter.py:107 in │ to_typedef │ │ 104 │ if typ.hint in builtins: │ 105 │ return td.with_kind(builtins[typ.hint]) │ 106 │ │ ❱ 107 │ if issubclass(cls := typ.hint, enum.Enum): │ 108 │ return td.with_enum(cls.__name__, description=get_doc(cls))
Any clue on what might be the cause? I can provide more info if needed.