mirror of
https://github.com/openSUSE/osc.git
synced 2025-02-22 18:22:12 +01:00
20 lines
383 B
Python
20 lines
383 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 PullRequestCommand(osc.commandline_git.GitObsCommand):
|
|
"""
|
|
Manage pull requests
|
|
"""
|
|
|
|
name = "pr"
|
|
|
|
def init_arguments(self):
|
|
pass
|
|
|
|
def run(self, args):
|
|
self.parser.print_help()
|