mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Fix pycodestyle E117 issues.
This commit is contained in:
parent
7b8e814a10
commit
3e778d3f8f
40 changed files with 150 additions and 150 deletions
|
@ -783,7 +783,7 @@ class AzureRMWebApps(AzureRMModuleBase):
|
|||
if self.site_config.get(fx_version):
|
||||
if not getattr(existing_config, fx_version) or \
|
||||
getattr(existing_config, fx_version).upper() != self.site_config.get(fx_version).upper():
|
||||
return True
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
|
|
|
@ -671,7 +671,7 @@ class AzureRMWebAppSlots(AzureRMModuleBase):
|
|||
if self.site_config.get(fx_version):
|
||||
if not getattr(existing_config, fx_version) or \
|
||||
getattr(existing_config, fx_version).upper() != self.site_config.get(fx_version).upper():
|
||||
return True
|
||||
return True
|
||||
|
||||
if self.auto_swap_slot_name is False and existing_config.auto_swap_slot_name is not None:
|
||||
return True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue