mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-15 00:36:11 +01:00
Daniel Mach
26a8fb1acf
This is based on a prototype we've worked on together with Laurin Fäller <laurin.faeller@suse.com>.
20 lines
349 B
Python
20 lines
349 B
Python
import osc.commandline
|
|
|
|
|
|
class RequestAcceptCommand(osc.commandline.OscCommand):
|
|
"""
|
|
Accept request
|
|
"""
|
|
|
|
name = "accept"
|
|
parent = "RequestCommand"
|
|
|
|
def init_arguments(self):
|
|
self.add_argument(
|
|
"id",
|
|
type=int,
|
|
)
|
|
|
|
def run(self, args):
|
|
print(f"Accepting request '{args.id}'")
|