mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
9 lines
170 B
Python
9 lines
170 B
Python
from base import Task
|
|
|
|
|
|
class PrintInfo(Task):
|
|
description = 'Printing `info\' to the console'
|
|
|
|
def run(self, info):
|
|
super(PrintInfo, self).run(info)
|
|
print('info')
|