You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I ran:
traixroute -process -asn probe -t -dest 8.8.8.8
File "/home/yulingli/.local/lib/python3.5/site-packages/traixroute/application.py", line 310, in main
if not string_handle.is_valid_ip_address(inputIP, 'IP'):
TypeError: is_valid_ip_address() missing 1 required positional argument: 'dataset'
I looked into string_handler.py
class string_handler():
'''
This modules handles the strings.
'''
# TODO: Change this function for IPv6
def is_valid_ip_address(self, address, kind, dataset):
Looks like application.py is not passing 'dataset' argument(which is a string?) to string_handler.is_valid_ip_address
The text was updated successfully, but these errors were encountered:
Hi,
When I ran:
traixroute -process -asn probe -t -dest 8.8.8.8
File "/home/yulingli/.local/lib/python3.5/site-packages/traixroute/application.py", line 310, in main
if not string_handle.is_valid_ip_address(inputIP, 'IP'):
TypeError: is_valid_ip_address() missing 1 required positional argument: 'dataset'
I looked into string_handler.py
class string_handler():
'''
This modules handles the strings.
'''
Looks like application.py is not passing 'dataset' argument(which is a string?) to string_handler.is_valid_ip_address
The text was updated successfully, but these errors were encountered: