Lint: E122 continuation line missing indentation or outdented

This commit is contained in:
2020-11-07 13:12:26 -05:00
parent 7932be3948
commit e553c5d42a
2 changed files with 8 additions and 8 deletions

View File

@ -662,11 +662,11 @@ class VMInstance(object):
# Conditional pass one - Are we already performing an action
if self.instart is False \
and self.inrestart is False \
and self.inmigrate is False \
and self.inreceive is False \
and self.inshutdown is False \
and self.instop is False:
and self.inrestart is False \
and self.inmigrate is False \
and self.inreceive is False \
and self.inshutdown is False \
and self.instop is False:
# Conditional pass two - Is this VM configured to run on this node
if self.node == self.this_node.name:
# Conditional pass three - Is this VM currently running on this node