Is dagger functions supposed to pick up functions from imported objects, like in Test and Lint this example, because it does not for me:
# src/my_module/main.py
import dagger
from .test import Test # in src/my_module/test.py
from .lint import Lint # in src/my_module/lint.py
@dagger.object_type
class MyModule:
@dagger.function
def test(self) -> Test:
return Test()
@dagger.function
def lint(self) -> Lint:
return Lint()