golden hour
/lib/python3.9/site-packages/tracer/views/resource
⬆️ Go Up
Upload
File/Folder
Size
Actions
__init__.py
0 B
Del
OK
__pycache__
-
Del
OK
applications.py
384 B
Del
OK
packages.py
462 B
Del
OK
processes.py
387 B
Del
OK
rules.py
265 B
Del
OK
system.py
744 B
Del
OK
Edit: rules.py
from __future__ import unicode_literals from .. import View class RulesView(View): def render(self): line = "{0:<40}{1:<10}" print(line.format("Rule", "Action")) print(55 * "-") for rule in self.args.rules: print(line.format(rule.name, rule.action))
Save