From 3dc6eba2daace5dea2efe84859145df9b2f995dd Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Thu, 29 Sep 2022 13:22:25 -0400 Subject: [PATCH] Common: Remove disused common/port_status.py This was moved to common.types and should have been removed in 8ae11e94aa --- monkey/common/port_status.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 monkey/common/port_status.py 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