MCPcopy Create free account
hub / github.com/It4innovations/hyperqueue / name

Method name

benchmarks/src/cli.py:26–30  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

24 return Path("benchmarks") / self.name()
25
26 def name(self) -> str:
27 def camel_to_kebab(s: str) -> str:
28 return "".join(["-" + c.lower() if c.isupper() else c for c in s]).lstrip("-")
29
30 return camel_to_kebab(self.__class__.__name__)
31
32 def generate_descriptors(self) -> Iterable[BenchmarkDescriptor]:
33 raise NotImplementedError

Callers 2

get_workdirMethod · 0.95
wrap_clsFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected