summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ryu/lib/packet/bgp.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ryu/lib/packet/bgp.py b/ryu/lib/packet/bgp.py
index 29c10a46..8359412f 100644
--- a/ryu/lib/packet/bgp.py
+++ b/ryu/lib/packet/bgp.py
@@ -3579,9 +3579,9 @@ class PmsiTunnelIdIngressReplication(_PmsiTunnelId):
@classmethod
def parser(cls, buf):
- (tunnel_endpoint_ip,
- ) = struct.unpack_from(cls._VALUE_PACK_STR % len(buf),
- six.binary_type(buf))
+ (tunnel_endpoint_ip, ) = struct.unpack_from(
+ cls._VALUE_PACK_STR % len(buf),
+ six.binary_type(buf))
return cls(tunnel_endpoint_ip=ip.bin_to_text(tunnel_endpoint_ip))
def serialize(self):