(
cls,
is_color, # type: bool
**kwargs # type: str
)
| 157 | class ColorConfig(object): |
| 158 | @classmethod |
| 159 | def create( |
| 160 | cls, |
| 161 | is_color, # type: bool |
| 162 | **kwargs # type: str |
| 163 | ): |
| 164 | # type: (...) -> ColorConfig |
| 165 | return cls(env=kwargs, is_color=is_color) |
| 166 | |
| 167 | _env = attr.ib() # type: Mapping[str, str] |
| 168 | _is_color = attr.ib() # type: bool |
no outgoing calls
no test coverage detected