Due to the filter on this line dependson only resolves once. The built-in filter function in python returns an iterator. Therefore, the dependson attribute can only be iterated once, hence all concecutive batchloads will not force dependencies to load.
Due to the filter on this line dependson only resolves once. The built-in filter function in python returns an iterator. Therefore, the dependson attribute can only be iterated once, hence all concecutive batchloads will not force dependencies to load.
A quick fix would be the following
or
Either of the two solutions results in a list which alows for multiple iterations.