Instead of importing the load, load_build functions into the osbuild namespace and using it via that, use the load function via the module that provides them, i.e. the formats.v1 module.
18 lines
493 B
Python
18 lines
493 B
Python
"""OSBuild Module
|
|
|
|
The `osbuild` module provides access to the internal features of OSBuild. It
|
|
provides parsers for the input and output formats of osbuild, access to shared
|
|
infrastructure of osbuild stages, as well as a pipeline executor.
|
|
|
|
The utility module `osbuild.util` provides access to common functionality
|
|
independent of osbuild but used across the osbuild codebase.
|
|
"""
|
|
|
|
from .pipeline import Assembler, Pipeline, Stage
|
|
|
|
|
|
__all__ = [
|
|
"Assembler",
|
|
"Pipeline",
|
|
"Stage",
|
|
]
|