diff --git a/awx/main/migrations/_inventory_source_vars.py b/awx/main/migrations/_inventory_source_vars.py index 7660d6397226..779655d73aee 100644 --- a/awx/main/migrations/_inventory_source_vars.py +++ b/awx/main/migrations/_inventory_source_vars.py @@ -76,7 +76,7 @@ def inventory_as_dict(self, inventory_source, private_data_dir): user_filters = [] old_filterables = [ ('resource_groups', 'resource_group'), - ('tags', 'tags') + ('tags', 'tags'), # locations / location would be an entry # but this would conflict with source_regions ] diff --git a/awx/main/models/mixins.py b/awx/main/models/mixins.py index 9e9a9e9c295f..210d4f44a1d7 100644 --- a/awx/main/models/mixins.py +++ b/awx/main/models/mixins.py @@ -527,7 +527,6 @@ def clean_custom_virtualenv(self): class RelatedJobsMixin(object): - """ This method is intended to be overwritten. Called by get_active_jobs() diff --git a/awx/sso/backends.py b/awx/sso/backends.py index 82f538771e34..bd4cb6c6726f 100644 --- a/awx/sso/backends.py +++ b/awx/sso/backends.py @@ -68,7 +68,6 @@ def __init__(self, prefix='AUTH_LDAP_', defaults={}): class LDAPBackend(BaseLDAPBackend): - """ Custom LDAP backend for AWX. """