From 71f707b7ac649c9157f57b5eeb75e5f44dd95e66 Mon Sep 17 00:00:00 2001 From: ifoughali Date: Thu, 20 Nov 2025 11:26:43 +0100 Subject: [PATCH] Feat: removed SCHEDULED choice due to redundency with sync interval --- netbox/core/choices.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/netbox/core/choices.py b/netbox/core/choices.py index 6bc1fa2f8..34d146017 100644 --- a/netbox/core/choices.py +++ b/netbox/core/choices.py @@ -13,7 +13,6 @@ class DataSourceStatusChoices(ChoiceSet): SYNCING = 'syncing' COMPLETED = 'completed' FAILED = 'failed' - SCHEDULED = 'scheduled' READY = 'ready' CHOICES = ( @@ -22,7 +21,6 @@ class DataSourceStatusChoices(ChoiceSet): (SYNCING, _('Syncing'), 'cyan'), (COMPLETED, _('Completed'), 'green'), (FAILED, _('Failed'), 'red'), - (SCHEDULED, _('Scheduled'), 'gray'), (READY, _('Ready'), 'green'), )