Skip to content

Commit 3e5d348

Browse files
committed
fix 3.8 and 3.9 (again)
1 parent 551b322 commit 3e5d348

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/view/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class BuildStep(ConfigModel): # type: ignore
137137
class BuildConfig(ConfigModel, env_prefix="view_build_"): # type: ignore
138138
path: Path = Path("./build")
139139
default_steps: Union[List[str], None] = None
140-
steps: Dict[str, Union[BuildStep, list[BuildStep]]] = ConfigField(default_factory=dict)
140+
steps: Dict[str, Union[BuildStep, List[BuildStep]]] = ConfigField(default_factory=dict)
141141
parallel: bool = False
142142

143143

0 commit comments

Comments
 (0)