From 1face5aa2839ff3373fe45498c0055c5460cf8ab Mon Sep 17 00:00:00 2001 From: Akita Noek Date: Wed, 16 Mar 2016 14:19:31 -0400 Subject: [PATCH] Dropped unused ResourceMixin from InventorySource --- awx/main/models/inventory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/models/inventory.py b/awx/main/models/inventory.py index bdf374f959..0c3b07a89f 100644 --- a/awx/main/models/inventory.py +++ b/awx/main/models/inventory.py @@ -1053,7 +1053,7 @@ class InventorySourceOptions(BaseModel): return ','.join(choices) -class InventorySource(UnifiedJobTemplate, InventorySourceOptions, ResourceMixin): +class InventorySource(UnifiedJobTemplate, InventorySourceOptions): class Meta: app_label = 'main'