14637 remove extra assignment

This commit is contained in:
Arthur 2024-01-04 07:37:04 -08:00
parent bfda9d5f62
commit 9003e1f70b

View File

@ -317,7 +317,7 @@ class CableTermination(ChangeLoggedModel):
super().clean()
# Check for existing termination
qs = existing_termination = CableTermination.objects.filter(
qs = CableTermination.objects.filter(
termination_type=self.termination_type,
termination_id=self.termination_id
)