mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-07-29 11:55:04 +00:00
Add typing information, 1/2 (#1176)
* Re-enable typing and improve config. * Make mypy pass. * Improve settings. * First batch of types. * Add more type hints. * Fixes. * Format. * Fix split_port() without returning to previous type chaos. * Continue with type hints (and ignores).
This commit is contained in:
@@ -86,7 +86,7 @@ from ansible_collections.community.docker.plugins.module_utils._common_api impor
|
||||
)
|
||||
|
||||
|
||||
def main():
|
||||
def main() -> None:
|
||||
argument_spec = {
|
||||
"name": {"type": "str", "required": True},
|
||||
}
|
||||
@@ -96,8 +96,9 @@ def main():
|
||||
supports_check_mode=True,
|
||||
)
|
||||
|
||||
container_id: str = client.module.params["name"]
|
||||
try:
|
||||
container = client.get_container(client.module.params["name"])
|
||||
container = client.get_container(container_id)
|
||||
|
||||
client.module.exit_json(
|
||||
changed=False,
|
||||
|
||||
Reference in New Issue
Block a user