comparison env/lib/python3.7/site-packages/planemo/commands/cmd_syntax.py @ 0:26e78fe6e8c4 draft

"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
author shellac
date Sat, 02 May 2020 07:14:21 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:26e78fe6e8c4
1 """Module describing the planemo ``syntax`` command."""
2 import click
3
4 from planemo.cli import command_function
5
6 SYNTAX_URL = "https://docs.galaxyproject.org/en/latest/dev/schema.html"
7
8
9 @click.command("syntax")
10 @command_function
11 def cli(ctx, **kwds):
12 """Open tool config syntax page in web browser."""
13 click.launch(SYNTAX_URL)