I have this code
import typer
app = typer.Typer()
class Parametrs:
one: int
two: str
@app.command()
def calib(parametrs: Parametrs):
print(f"One: {parametrs.one}, Two: {parametrs.two}")
if __name__ == "__main__":
app()
when I try to send a command to the console, I get an error
Then i get this error
RuntimeError: Type not yet supported: <class 'main.Parametrs'>
Yup you're exactly right it's a
typerthing. But! We may be able to make this work. Could you do something like this?