Skip to content

Commit

Permalink
adding docstrings to class
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-johnson committed Apr 2, 2018
1 parent 18cf2a4 commit e44ed7a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions network_pipeline/scripts/tools/arp_send_msg.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@

class Ethernet(object):

"""
Generic Ethernet Frame class
"""

def __init__(self):
self.dst = None
self.src = None
Expand All @@ -25,6 +29,10 @@ def __init__(self):

class Arp(object):

"""
Generic ARP Frame class
"""

def __init__(self):
self.htype = None
self.ptype = None
Expand Down

0 comments on commit e44ed7a

Please sign in to comment.