mirror of
https://github.com/whisperity/CodeChecker-Action.git
synced 2025-12-29 03:07:23 +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
|