MCPcopy
hub / github.com/pex-tool/pex / create

Method create

tests/integration/test_issue_157.py:159–165  ·  view source on GitHub ↗
(
        cls,
        is_color,  # type: bool
        **kwargs  # type: str
    )

Source from the content-addressed store, hash-verified

157class 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

Calls

no outgoing calls

Tested by

no test coverage detected