mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
196 B
Python
14 lines
196 B
Python
|
|
|
|
__metaclass__ = type
|
|
|
|
class NewStyleEvenForPython2:
|
|
|
|
__slots__ = [ "ok" ]
|
|
|
|
class OkToUseSuper(NewStyleEvenForPython2):
|
|
|
|
def __init__(self):
|
|
super(OkToUseSuper, self).__init__()
|
|
|