Skip to content

Commit

Permalink
cleaning; fix links in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mvr committed Mar 12, 2024
1 parent 3fdcbf5 commit 6970550
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<br/><br/>
<a href=https://pypi.python.org/pypi/aws-ssm-tool/><img src="https://img.shields.io/pypi/l/aws-ssm-tool.svg"></a>
<a href=https://pypi.python.org/pypi/aws-ssm-tool/><img src="https://badge.fury.io/py/aws-ssm-tool.svg"></a>
<a href="https://github.com/https://github.com/Robot-Wranglers/ssm-tool/actions/workflows/python-test.yml"><img src="https://github.com/Robot-Wranglers/ssm-tool/actions/workflows/python-test.yml/badge.svg"></a>
<a href="https://github.com/Robot-Wranglers/ssm-tool/actions/workflows/python-test.yml"><img src="https://github.com/Robot-Wranglers/ssm-tool/actions/workflows/python-test.yml/badge.svg"></a>
</td>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion README.md.j2
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<br/><br/>
<a href=https://pypi.python.org/pypi/{{python.package.name}}/><img src="https://img.shields.io/pypi/l/{{python.package.name}}.svg"></a>
<a href=https://pypi.python.org/pypi/{{python.package.name}}/><img src="https://badge.fury.io/py/{{python.package.name}}.svg"></a>
<a href="https://github.com/{{github.repo_url}}/actions/workflows/python-test.yml"><img src="{{github.repo_url}}/actions/workflows/python-test.yml/badge.svg"></a>
<a href="{{github.repo_url}}/actions/workflows/python-test.yml"><img src="{{github.repo_url}}/actions/workflows/python-test.yml/badge.svg"></a>
</td>
</tr>
</table>
Expand Down
12 changes: 1 addition & 11 deletions src/ssm/cli/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,6 @@
output_format_tree_default = output_format_partial(required=False, default="tree")


optional_user = user = click.option(
"--user",
help="username (default will attempt auto-detect)",
required=False,
default="",
)
optional_users = users = click.option(
"--users", help="user list (comma-separatted)", required=False, default=""
)

raw = click.option(
"--raw", "-r", help="unquotes text return values (like jq -r)", default=False
)
Expand Down Expand Up @@ -109,7 +99,7 @@
# required_profile = profile_partial(
# required=True,
# )
profile = default_profile = profile_partial(
profile = profile_partial(
default="default",
required=False,
)
Expand Down

0 comments on commit 6970550

Please sign in to comment.