Skip to content
This repository was archived by the owner on Mar 2, 2025. It is now read-only.

Commit 5bdbfcb

Browse files
committed
Fix hanging parenthesis
1 parent dbb9d63 commit 5bdbfcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ciscoconfparse/ccp_util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ def captured(self):
637637
# do NOT wrap with @logger.catch(...)
638638
def _get_ipv4(val="", strict=False, stdlib=False, debug=0):
639639
"""Return the requested IPv4 object to the caller. This method heavily depends on IPv4Obj()"""
640-
if not (isinstance(val, (str, int)):
640+
if not isinstance(val, (str, int)):
641641
raise ValueError
642642

643643
if not isinstance(strict, bool):

0 commit comments

Comments
 (0)