diff --git a/src/gt4py/next/program_processors/runners/dace_fieldview/gtir_sdfg.py b/src/gt4py/next/program_processors/runners/dace_fieldview/gtir_sdfg.py index 9a9b54617a..31f3353aac 100644 --- a/src/gt4py/next/program_processors/runners/dace_fieldview/gtir_sdfg.py +++ b/src/gt4py/next/program_processors/runners/dace_fieldview/gtir_sdfg.py @@ -360,7 +360,7 @@ def _add_sdfg_params( self, sdfg: dace.SDFG, node_params: Sequence[gtir.Sym], - symbolic_arguments: Optional[set[str]], + symbolic_arguments: set[str], ) -> list[str]: """ Helper function to add storage for node parameters and connectivity tables. @@ -370,9 +370,6 @@ def _add_sdfg_params( except when they are listed in 'symbolic_arguments', in which case they will be represented in the SDFG as DaCe symbols. """ - if symbolic_arguments is None: - symbolic_arguments = set() - # add non-transient arrays and/or SDFG symbols for the program arguments sdfg_args = [] for param in node_params: