mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
12 lines
244 B
Python
12 lines
244 B
Python
class Group(list):
|
|
def run(self, *args, **kwargs):
|
|
raise NotImplementedError
|
|
|
|
class SerialGroup(Group):
|
|
def run(self, *args, **kwargs):
|
|
pass
|
|
|
|
class ThreadingGroup(Group):
|
|
def run(self, *args, **kwargs):
|
|
pass
|