Skip to content

Commit

Permalink
fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
edopao committed Feb 4, 2025
1 parent bb99900 commit 4e5ae2c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__(
**kwargs: Any,
) -> None:
super().__init__(**kwargs)
self._shared_data = {}
self._shared_data = {} # type: ignore[var-annotated]
self._apply_fusion_callback = None
if only_toplevel_maps is not None:
self.only_toplevel_maps = bool(only_toplevel_maps)
Expand Down Expand Up @@ -413,7 +413,7 @@ def _scan_sdfg_if_data_is_shared(
data: nodes.AccessNode,
state: dace.SDFGState,
sdfg: dace.SDFG,
) -> None:
) -> bool:
"""Scans `sdfg` to determine if `data` is shared.
Essentially, this function determine, if the intermediate AccessNode `data` is
Expand Down

0 comments on commit 4e5ae2c

Please sign in to comment.