File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 11# Copyright (c) Meta Platforms, Inc. and affiliates.
22# All rights reserved.
3+ # Copyright 2025 Arm Limited and/or its affiliates.
34#
45# This source code is licensed under the BSD-style license found in the
56# LICENSE file in the root directory of this source tree.
1213import re
1314from pstats import Stats
1415
15- from snakeviz .stats import json_stats , table_rows # type: ignore[import-not-found]
16+ from snakeviz .stats import ( # type: ignore[import-not-found,import-untyped]
17+ json_stats ,
18+ table_rows ,
19+ )
1620from tornado import template # type: ignore[import-not-found]
1721
1822module_found = True
1923snakeviz_templates_dir : str = ""
2024
2125try :
22- import snakeviz # type: ignore[import-not-found]
26+ import snakeviz # type: ignore[import-not-found,import-untyped ]
2327
2428 snakeviz_dir = os .path .dirname (os .path .abspath (snakeviz .__file__ ))
2529 snakeviz_templates_dir = os .path .join (snakeviz_dir , "templates" )
You can’t perform that action at this time.
0 commit comments