mirror of
https://github.com/samba-team/samba.git
synced 2025-07-23 20:59:10 +03:00
PEP8: fix E203: whitespace before ':'
Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
@ -93,12 +93,12 @@ class inf_to_ldb(gp_ext_setter):
|
||||
|
||||
def mapper(self):
|
||||
'''ldap value : samba setter'''
|
||||
return {"minPwdAge" : (self.ch_minPwdAge, self.days2rel_nttime),
|
||||
"maxPwdAge" : (self.ch_maxPwdAge, self.days2rel_nttime),
|
||||
return {"minPwdAge": (self.ch_minPwdAge, self.days2rel_nttime),
|
||||
"maxPwdAge": (self.ch_maxPwdAge, self.days2rel_nttime),
|
||||
# Could be none, but I like the method assignment in
|
||||
# update_samba
|
||||
"minPwdLength" : (self.ch_minPwdLength, self.explicit),
|
||||
"pwdProperties" : (self.ch_pwdProperties, self.explicit),
|
||||
"minPwdLength": (self.ch_minPwdLength, self.explicit),
|
||||
"pwdProperties": (self.ch_pwdProperties, self.explicit),
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user