bgp/info_base: Refactor has_nexthop() method

Signed-off-by: Satoshi Fujimoto <satoshi.fujimoto7@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
This commit is contained in:
Satoshi Fujimoto 2017-03-24 13:11:06 +09:00 committed by FUJITA Tomonori
parent 399a03feb1
commit e1741b7d77

View File

@ -843,8 +843,7 @@ class Path(object):
return self._source is None
def has_nexthop(self):
return not (not self._nexthop or self._nexthop == '0.0.0.0' or
self._nexthop == '::')
return self._nexthop and self._nexthop not in ('0.0.0.0', '::')
def __str__(self):
return (