From f14d4428bd71e9ee455180c2b676ba6ada6a28d4 Mon Sep 17 00:00:00 2001 From: Oliver Bristow Date: Thu, 14 Sep 2017 22:12:06 +0100 Subject: [PATCH] Remove redundant properties --- gunicorn/config.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/gunicorn/config.py b/gunicorn/config.py index f5c7600b..c8f8f16d 100644 --- a/gunicorn/config.py +++ b/gunicorn/config.py @@ -119,14 +119,6 @@ class Config(object): worker_class.setup() return worker_class - @property - def threads(self): - return self.settings['threads'].get() - - @property - def workers(self): - return self.settings['workers'].get() - @property def address(self): s = self.settings['bind'].get()