mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
10 lines
169 B
Python
10 lines
169 B
Python
|
|
class Abstract(object):
|
|
|
|
def wrong(self):
|
|
# Will raise a TypeError
|
|
raise NotImplemented()
|
|
|
|
def right(self):
|
|
raise NotImplementedError()
|