From e16debeff9be455a59ceb6d8f7819a90e3b94323 Mon Sep 17 00:00:00 2001 From: acepace Date: Sat, 20 Aug 2016 17:56:23 +0300 Subject: [PATCH] Documented config variable --- chaos_monkey/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chaos_monkey/config.py b/chaos_monkey/config.py index b58ad4a5f..bc1d7a4b3 100644 --- a/chaos_monkey/config.py +++ b/chaos_monkey/config.py @@ -13,7 +13,6 @@ GUID = str(uuid.getnode()) EXTERNAL_CONFIG_FILE = os.path.join(os.path.abspath(os.path.dirname(sys.argv[0])), 'monkey.bin') - def _cast_by_example(value, example): """ a method that casts a value to the type of the parameter given as example @@ -85,6 +84,7 @@ class Configuration(object): return result + # Used to keep track of our depth if manually specified _depth_from_commandline = False ###########################