Improve return function

This commit is contained in:
VirtuBox
2019-10-30 13:05:08 +01:00
parent 8ce4a206a9
commit 37c937f006
3 changed files with 12 additions and 40 deletions

View File

@@ -33,7 +33,4 @@ def check_fqdn_ip(self):
y = requests.get('http://v4.wordops.eu/dns/{0}/'.format(wo_fqdn))
ip_fqdn = (y.text).strip()
if ip == ip_fqdn:
return True
else:
return False
return bool(ip == ip_fqdn)