Skip to content

Commit d29b1ec

Browse files
committed
Fix flake8 warnings.
1 parent 2638ed9 commit d29b1ec

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

iptools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class IpRange (Sequence):
115115
>>> 2130706433 in r
116116
False
117117
>>> r = IpRange('::ffff:ffff:0000/120')
118-
>>> for ip in r:
118+
>>> for ip in r:
119119
... print(ip) # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
120120
::ffff:ffff:0 ... ::ffff:ffff:6d ... ::ffff:ffff:ff
121121

iptools/ipv4.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ def bin(x):
190190
#: (`RFC 919 <https://tools.ietf.org/html/rfc919>`_)
191191
BROADCAST = "255.255.255.255"
192192

193+
193194
def validate_ip(s):
194195
"""Validate a dotted-quad ip address.
195196

0 commit comments

Comments
 (0)