mirror of
https://github.com/samba-team/samba.git
synced 2025-08-04 08:22:08 +03:00
PEP8: fix E713: test for membership should be 'not in'
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:
@ -264,7 +264,7 @@ def check_all_substituted(text):
|
||||
|
||||
:param text: The text to search for substitution variables
|
||||
"""
|
||||
if not "${" in text:
|
||||
if "${" not in text:
|
||||
return
|
||||
|
||||
var_start = text.find("${")
|
||||
|
Reference in New Issue
Block a user