mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
196 B
Python
14 lines
196 B
Python
|
|
try:
|
|
|
|
@decorator
|
|
class S(object):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(S, self).__init__(*args, **kwargs)
|
|
|
|
except Exception:
|
|
|
|
class S(object):
|
|
pass
|