for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
from lib.actions import YammerAction
__all__ = [
'SuspendUserAction'
]
class SuspendUserAction(YammerAction):
def run(self, id=None):
id
It is generally discouraged to redefine built-ins as this makes code very hard to read.
yammer = self.authenticate()
user = yammer.users.suspend(id)
return user
It is generally discouraged to redefine built-ins as this makes code very hard to read.