mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
7 lines
122 B
Python
7 lines
122 B
Python
from common import Task
|
|
|
|
|
|
class PrintInfo(Task):
|
|
def run(self, info):
|
|
super(PrintInfo, self).run(info)
|
|
print('info')
|