From aba86e36576a8f49fada328e899029a3b75de80e Mon Sep 17 00:00:00 2001 From: Richard C Isaacson Date: Sun, 19 Jan 2014 20:51:39 -0600 Subject: [PATCH] Cleaning up pep8 alerts. --- library/system/at | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/library/system/at b/library/system/at index 917aa062f87..36131286388 100644 --- a/library/system/at +++ b/library/system/at @@ -132,19 +132,19 @@ def main(): module = AnsibleModule( argument_spec = dict( command=dict(required=False, - type='str'), + type='str'), script_file=dict(required=False, - type='str'), + type='str'), count=dict(required=False, - type='int'), + type='int'), units=dict(required=False, - default=None, - choices=['minutes', 'hours', 'days', 'weeks'], - type='str'), + default=None, + choices=['minutes', 'hours', 'days', 'weeks'], + type='str'), state=dict(required=False, - default='present', - choices=['present', 'absent'], - type='str'), + default='present', + choices=['present', 'absent'], + type='str'), unique=dict(required=False, default=False, type='bool')