From a3db4142bf396e1669a924943af0d06adcf6458b Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Fri, 24 Jun 2022 07:36:58 -0400 Subject: [PATCH] Common: Add a docstring to OperatingSystems --- monkey/common/operating_systems.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/monkey/common/operating_systems.py b/monkey/common/operating_systems.py index 67f67da81..2ac2f64b3 100644 --- a/monkey/common/operating_systems.py +++ b/monkey/common/operating_systems.py @@ -2,5 +2,12 @@ from enum import Enum class OperatingSystems(Enum): + """ + An Enum representing all supported operating systems + + This Enum represents all operating systems that Infection Monkey supports. The value of each + member is the member's name in all lower-case characters. + """ + LINUX = "linux" WINDOWS = "windows"