Noob in dagger here. If I have a defaultpath already set like this
@function
def build_container(
self,
source: SourceDir,
libs: Annotated[
Directory,
Doc("Libs directory"),
Ignore([".venv", ".ruff_cache", ".pytest_cache", ".pdm-build"]),
DefaultPath("libs/aukafka"),
],
) -> Container:
how I can stop requiring this arg in next functions like this one
@function
def build_env(
self,
source: SourceDir
) -> Container:
return (
self.build_container(source)```