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 32
32
from codegen .shared .enums .programming_language import ProgrammingLanguage
33
33
from codegen .shared .exceptions .control_flow import StopCodemodException
34
34
from 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
36
36
37
37
if TYPE_CHECKING :
38
38
from collections .abc import Generator , Mapping , Sequence
@@ -226,7 +226,7 @@ def _graph(self) -> PyDiGraph[Importable, Edge]:
226
226
def _graph (self , value : PyDiGraph [Importable , Edge ]) -> None :
227
227
self .__graph = value
228
228
229
- @stopwatch_with_sentry ( name = "build_graph" )
229
+ @stopwatch
230
230
@commiter
231
231
def build_graph (self , repo_operator : RepoOperator ) -> None :
232
232
"""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