summaryrefslogtreecommitdiff
path: root/virtinst/network.py
diff options
context:
space:
mode:
authorPavel Hrdina <phrdina@redhat.com>2015-07-10 14:07:02 +0200
committerCole Robinson <crobinso@redhat.com>2015-07-14 13:01:20 -0400
commitc7049eb120002612d5bd0f5fffaedf568665de77 (patch)
treed9cdbef9df1e18c6c020563d698240a9e9fabb40 /virtinst/network.py
parent349220d188f18e369cb78e050d3a7f26f21b84f1 (diff)
downloadvirt-manager-c7049eb120002612d5bd0f5fffaedf568665de77.tar.gz
pep8 W503: line break before binary operator
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Diffstat (limited to 'virtinst/network.py')
-rw-r--r--virtinst/network.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/virtinst/network.py b/virtinst/network.py
index 8b486d85..8518e57f 100644
--- a/virtinst/network.py
+++ b/virtinst/network.py
@@ -95,12 +95,12 @@ class _NetworkBandwidth(XMLBuilder):
outbound_burst = XMLProperty("./outbound/@burst")
def is_inbound(self):
- return bool(self.inbound_average or self.inbound_peak
- or self.inbound_burst or self.inbound_floor)
+ return bool(self.inbound_average or self.inbound_peak or
+ self.inbound_burst or self.inbound_floor)
def is_outbound(self):
- return bool(self.outbound_average or self.outbound_peak
- or self.outbound_burst)
+ return bool(self.outbound_average or self.outbound_peak or
+ self.outbound_burst)
def pretty_desc(self, inbound=True, outbound=True):
items_in = [(self.inbound_average, _("Average"), "KiB/s"),