aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/IPUtil.py
diff options
context:
space:
mode:
authorpmikus <pmikus@cisco.com>2021-10-08 08:54:21 +0000
committerPeter Mikus <pmikus@cisco.com>2021-10-08 11:37:48 +0000
commitbd15bb418bf618ff3055fb25c339778d12c1eaef (patch)
tree175532e95acb25fbae5710f0a4d6d2d03bf784eb /resources/libraries/python/IPUtil.py
parent68f8548a9769aa55de77176c58e9e70bd1a88742 (diff)
fix(Pylint): Small fixes
+ Just few obvious one Signed-off-by: pmikus <pmikus@cisco.com> Change-Id: I9bbac293a56d6b2943bef03cb3b8943e967dae6b
Diffstat (limited to 'resources/libraries/python/IPUtil.py')
-rw-r--r--resources/libraries/python/IPUtil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/libraries/python/IPUtil.py b/resources/libraries/python/IPUtil.py
index 57a738bb46..4a5a413fc8 100644
--- a/resources/libraries/python/IPUtil.py
+++ b/resources/libraries/python/IPUtil.py
@@ -155,8 +155,8 @@ class NetworkIncrement(ObjIncrement):
return f"{self._value.network_address}/{self._prefix_len}"
elif self._format == u"addr":
return f"{self._value.network_address}"
- else:
- raise RuntimeError(f"Unsupported format {self._format}")
+
+ raise RuntimeError(f"Unsupported format {self._format}")
class IPUtil: