mirror of
https://github.com/whisperity/CodeChecker-Action.git
synced 2025-12-28 18:57:26 +08:00
5 lines
119 B
Python
5 lines
119 B
Python
|
|
class ReturnInInitE0101:
|
||
|
|
def __init__(self, value):
|
||
|
|
# Should trigger "return-in-init"
|
||
|
|
return value
|