Bypassing Cyclical Dependencies In Python Transforms

I have:

  1. An output dataset which backs an Object Tyoe
  2. The Object Type has a materialized dataset
  3. I want to add the materialized dataset back as an input to my output dataset in (1).

This works fine on a branch, but fails with the error on main:

There are cyclical dependencies in the build graph.
Review your pipeline in the Data lineage graph, identify the area(s) where there is a cyclical dependency, and eliminate it.

Is there a way to suppress this check or bypass it since the logical flow of the pipeline is what I intend to do.