This is a quite common snippet: ``` python @classmethod def from_foo(cls, foo): return cls(foo, bar='baz') ``` However it breaks highlighting for arguments inside `()` since `cls` is not treated as a function.