diff --git a/monkey/common/port_status.py b/monkey/common/port_status.py deleted file mode 100644 index 8393e7a9a..000000000 --- a/monkey/common/port_status.py +++ /dev/null @@ -1,13 +0,0 @@ -from enum import Enum - - -class PortStatus(Enum): - """ - An Enum representing the status of the port. - - This Enum represents the status of a network pork. The value of each - member is distincive and unique number. - """ - - OPEN = 1 - CLOSED = 2