Skip to content

Commit

Permalink
ignore typing
Browse files Browse the repository at this point in the history
  • Loading branch information
rpmcginty committed May 16, 2024
1 parent 3163041 commit 04041ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aibs_informatics_cdk_lib/project/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ class BaseProjectConfig(BaseModel, Generic[G, S]):

@classmethod
def get_global_config_cls(cls) -> Type[G]:
return cls.model_fields["global_config"].annotation
return cls.model_fields["global_config"].annotation # type: ignore

@classmethod
def get_stage_config_cls(cls) -> Type[S]:
return cls.model_fields["default_config"].annotation
return cls.model_fields["default_config"].annotation # type: ignore

def get_stage_config(self, env_type: Union[str, EnvType]) -> S:
"""Get default config with `EnvType` overrides"""
Expand Down

0 comments on commit 04041ac

Please sign in to comment.