mirror of
https://github.com/ansible/awx.git
synced 2026-08-01 02:19:55 -02:30
flake8 fixes
This commit is contained in:
@@ -1256,8 +1256,8 @@ class InventoryUpdate(UnifiedJob, InventorySourceOptions):
|
|||||||
if not super(InventoryUpdate, self).can_start:
|
if not super(InventoryUpdate, self).can_start:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if (self.source != 'custom'
|
if (self.source != 'custom' and
|
||||||
and not (self.credential and self.credential.active)):
|
not (self.credential and self.credential.active)):
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|||||||
@@ -47,8 +47,8 @@ class ProjectOptions(models.Model):
|
|||||||
def get_local_path_choices(cls):
|
def get_local_path_choices(cls):
|
||||||
if os.path.exists(settings.PROJECTS_ROOT):
|
if os.path.exists(settings.PROJECTS_ROOT):
|
||||||
paths = [x.decode('utf-8') for x in os.listdir(settings.PROJECTS_ROOT)
|
paths = [x.decode('utf-8') for x in os.listdir(settings.PROJECTS_ROOT)
|
||||||
if os.path.isdir(os.path.join(settings.PROJECTS_ROOT, x))
|
if (os.path.isdir(os.path.join(settings.PROJECTS_ROOT, x)) and
|
||||||
and not x.startswith('.') and not x.startswith('_')]
|
not x.startswith('.') and not x.startswith('_'))]
|
||||||
qs = Project.objects.filter(active=True)
|
qs = Project.objects.filter(active=True)
|
||||||
used_paths = qs.values_list('local_path', flat=True)
|
used_paths = qs.values_list('local_path', flat=True)
|
||||||
return [x for x in paths if x not in used_paths]
|
return [x for x in paths if x not in used_paths]
|
||||||
|
|||||||
Reference in New Issue
Block a user