diff --git a/docs/parsers/traceroute.md b/docs/parsers/traceroute.md index 3975cce8..4c6a2f5b 100644 --- a/docs/parsers/traceroute.md +++ b/docs/parsers/traceroute.md @@ -89,13 +89,6 @@ Examples: info(self, /, *args, **kwargs) ``` -## Traceroute -```python -Traceroute(self, dest_name, dest_ip) -``` - -Abstraction of a traceroute result. - ## Hop ```python Hop(self, idx) diff --git a/jc/parsers/traceroute.py b/jc/parsers/traceroute.py index bd6e091d..9fd4646c 100644 --- a/jc/parsers/traceroute.py +++ b/jc/parsers/traceroute.py @@ -140,10 +140,6 @@ RE_PROBE_RTT_ANNOTATION = re.compile(r'(\d+\.?\d+)?\s+ms|(\s+\*\s+)\s*(!\S*)?') class Traceroute(object): - """ - Abstraction of a traceroute result. - """ - def __init__(self, dest_name, dest_ip): self.dest_name = dest_name self.dest_ip = dest_ip