Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
rpmcginty committed May 16, 2024
1 parent b2e0a2d commit 3163041
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/aibs_informatics_cdk_lib/project/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,6 @@ def load_stage_config(
return proj_config.get_stage_config(env_type=env_type)


# ProjectConfig = BaseProjectConfig[GlobalConfig, StageConfig]


class ProjectConfig(BaseProjectConfig[GlobalConfig, StageConfig]):
pass

Expand All @@ -203,6 +200,6 @@ def get_stage_config(
env_type: Union[str, EnvType],
path: Optional[Union[str, Path]] = None,
project_config_cls: Type[BaseProjectConfig[G, S]] = ProjectConfig,
) -> StageConfig:
) -> S:
proj_config = project_config_cls.load_config(path)
return proj_config.get_stage_config(env_type=env_type)

0 comments on commit 3163041

Please sign in to comment.