remove unneeded code

This commit is contained in:
Laura Klünder 2024-12-13 10:43:01 +00:00
parent 26341cce3f
commit d0bd0d585f

View file

@ -4,7 +4,7 @@ import operator
import random
from functools import reduce
from itertools import chain
from typing import Type, Any, Union, Self, TypeVar, Generic, NamedTuple, TypeAlias
from typing import Type, Any, Union, Self, TypeVar, Generic, NamedTuple
from django.apps import apps
from django.core import serializers
@ -565,9 +565,6 @@ class ChangedObjectCollection(BaseSchema):
# situations that ended prematurely
ended_situations: list[OperationSituation] = []
# situations already encountered by set of operation uuids included, values are number of operations
best_uids: dict[frozenset[tuple], int] = {}
# best way to get to a certain dependency snapshot, values are number of operations
best_dependency_snapshots: dict[tuple, int] = {}