Find it here: https://github.com/bitemyapp/learnhaskell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fabric.api import env | |
from fabric import tasks | |
from functools import wraps | |
def _wrap_as_new(original, new): | |
if isinstance(original, tasks.Task): | |
return tasks.WrappedCallableTask(new) | |
return new | |
def strict_roles(*role_list): |