Katolus / functions

Missing class docstring PY-D0002
Documentation
Minor
2 years ago3 years old
Docstring missing for class UnknownServiceError
1from functions.errors import FunctionBaseError
2
3
4class UnknownServiceError(FunctionBaseError):5    code = "gcp.unknown_service"
6    msg_template = "Unknown GCP service: {service}"
Docstring missing for class BuildVariables
13    SIGNATURE_TYPE: str
14
15
16class BuildVariables(BaseModel):17    path: str
18    tag: str
19    buildargs: BuildArgs
Docstring missing for class BuildArgs
 7from .enums import DockerLabel
 8
 9
10class BuildArgs(BaseModel):11    TARGET: str
12    SOURCE: str
13    SIGNATURE_TYPE: str
Docstring missing for class Config
 76    name: str
 77    component_type: Optional[ComponentType] = None
 78
 79    class Config: 80        # typer.Typer
 81        arbitrary_types_allowed = True
 82
Docstring missing for class Config
138                continue
139            self.add_typer(command.command_typer, name=command.name)
140
141    class Config:142        # typer.Typer
143        arbitrary_types_allowed = True