Add type int for various argument params (#55026)

Specify type as int for various arguments where default value is int.

Fixes: #55005

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2019-04-11 01:49:00 +05:30 committed by Sloane Hertel
parent dd3de27cc8
commit bea397b458
16 changed files with 21 additions and 21 deletions

View file

@ -268,7 +268,7 @@ def main():
temporary=dict(default=False, type='bool'),
state=dict(
default='present', choices=['absent', 'present', 'up', 'down', 'enabled', 'disabled', 'refreshed']),
wait=dict(default=60),
wait=dict(default=60, type='int'),
),
mutually_exclusive=[
('address', 'wait'),