Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-forte-elastic committed Oct 27, 2023
1 parent c26ffb0 commit df3fda4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eql/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def run(cls, ip_address, *cidr_matches):
if is_string(ip_address):
# Python 2 support
if sys.version_info.major == 2:
ip_address = ip_address.decode("utf-8") # noqa: F821
ip_address = ip_address.decode("utf-8") # noqa: F821
ip_address = ipaddress.ip_address(ip_address)

for cidr in cidr_matches:
Expand Down

0 comments on commit df3fda4

Please sign in to comment.