File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 88from globus_cli .types import AnyCallable
99
1010if t .TYPE_CHECKING :
11- from globus_cli .services .auth import CustomAuthClient
11+ # NB: GARE parsing requires other SDK components and therefore needs to be deferred
12+ # to avoid the performance impact of non-lazy imports
13+ from globus_sdk .gare import GARE
1214
13- # NB: GARE parsing requires other SDK components and therefore needs to be deferred to
14- # avoid the performance impact of non-lazy imports
15- if t .TYPE_CHECKING :
16- from globus_sdk .experimental .auth_requirements_error import (
17- GlobusAuthRequirementsError ,
18- )
15+ from globus_cli .services .auth import CustomAuthClient
1916
2017F = t .TypeVar ("F" , bound = AnyCallable )
2118
@@ -195,7 +192,7 @@ def __init__(
195192 self ,
196193 message : str ,
197194 * ,
198- gare : GlobusAuthRequirementsError | None = None ,
195+ gare : GARE | None = None ,
199196 epilog : str | None = None ,
200197 ) -> None :
201198 self .message = message
You can’t perform that action at this time.
0 commit comments