@@ -59,7 +59,7 @@ class PluxConfiguration:
5959 entrypoint_static_file : str = "plux.ini"
6060 """The name of the entrypoint ini file if entrypoint_build_mode is set to MANUAL."""
6161
62- bild_backend : BuildBackend = BuildBackend .AUTO
62+ build_backend : BuildBackend = BuildBackend .AUTO
6363 """The build backend to use. If set to ``auto``, the build backend will be detected automatically from the config."""
6464
6565 def merge (
@@ -69,7 +69,7 @@ def merge(
6969 include : list [str ] = None ,
7070 entrypoint_build_mode : EntrypointBuildMode = None ,
7171 entrypoint_static_file : str = None ,
72- bild_backend : BuildBackend = None ,
72+ build_backend : BuildBackend = None ,
7373 ) -> "PluxConfiguration" :
7474 """
7575 Merges or overwrites the given values into the current configuration and returns a new configuration object.
@@ -85,7 +85,7 @@ def merge(
8585 entrypoint_static_file = entrypoint_static_file
8686 if entrypoint_static_file is not None
8787 else self .entrypoint_static_file ,
88- bild_backend = bild_backend if bild_backend is not None else self .bild_backend ,
88+ build_backend = build_backend if build_backend is not None else self .build_backend ,
8989 )
9090
9191
@@ -193,9 +193,9 @@ def determine_build_backend_from_config(workdir: str) -> BuildBackend:
193193 # parse config to get build backend
194194 plux_config = read_plux_config_from_workdir (workdir )
195195
196- if plux_config .bild_backend != BuildBackend .AUTO :
196+ if plux_config .build_backend != BuildBackend .AUTO :
197197 # first, check if the user configured one
198- return plux_config .bild_backend
198+ return plux_config .build_backend
199199
200200 # otherwise, try to determine it from the build-backend attribute in the pyproject.toml
201201 try :
0 commit comments