blob: 6cb84690f78d9384dd8b5c3901ae71aeacc26a78 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
from mailman.interfaces.command import IEmailCommand
from public import public
from zope.interface import implementer
@public
@implementer(IEmailCommand)
class Key:
name = 'key'
argument_description = '<change|revoke|sign>'
short_description = ''
description = ''
def process(mlist, msg, msgdata, arguments, results):
"""See `IEmailCommand`."""
pass
|