mirror of
https://github.com/openSUSE/osc.git
synced 2025-08-20 21:48:53 +02:00
21 lines
434 B
Python
21 lines
434 B
Python
import osc.commandline_git
|
|
|
|
|
|
# we decided not to use the command name 'pull' because that could be confused
|
|
# with the completely unrelated 'git pull' command
|
|
|
|
|
|
class PullRequestReviewCommand(osc.commandline_git.GitObsCommand):
|
|
"""
|
|
Manage pull request reviews
|
|
"""
|
|
|
|
name = "review"
|
|
parent = "PullRequestCommand"
|
|
|
|
def init_arguments(self):
|
|
pass
|
|
|
|
def run(self, args):
|
|
self.parser.print_help()
|