File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 3232from codegen .shared .enums .programming_language import ProgrammingLanguage
3333from codegen .shared .exceptions .control_flow import StopCodemodException
3434from codegen .shared .logging .get_logger import get_logger
35- from codegen .shared .performance .stopwatch_utils import stopwatch , stopwatch_with_sentry
35+ from codegen .shared .performance .stopwatch_utils import stopwatch
3636
3737if TYPE_CHECKING :
3838 from collections .abc import Generator , Mapping , Sequence
@@ -226,7 +226,7 @@ def _graph(self) -> PyDiGraph[Importable, Edge]:
226226 def _graph (self , value : PyDiGraph [Importable , Edge ]) -> None :
227227 self .__graph = value
228228
229- @stopwatch_with_sentry ( name = "build_graph" )
229+ @stopwatch
230230 @commiter
231231 def build_graph (self , repo_operator : RepoOperator ) -> None :
232232 """Builds a codebase graph based on the current file state of the given repo operator"""
You can’t perform that action at this time.
0 commit comments