Hi all
I'm learning Dagger using Python as SDK. I've implemented a very stupid function like the one below
@function
def version(self) -> str:
"""Show the version number"""
return print("Version 1.0")
Running dagger call version works but didn't show the expected Version 1.0 text. To get it, I'm forced to run dagger call version -v.
Is this how it should works? In other words; how can I force the display of text to the console?
Thanks a lot