File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import { fastDebounce } from "@atom-ide-community/nuclide-commons/observable"
1010import UniversalDisposable from "@atom-ide-community/nuclide-commons/UniversalDisposable"
1111import { Observable } from "rxjs-compat/bundles/rxjs-compat.umd.min.js"
1212import { track } from "@atom-ide-community/nuclide-commons/analytics"
13- import * as RemoteDebuggerCommandServiceLocal from "./RemoteDebuggerCommandService"
1413import nullthrows from "nullthrows"
1514
1615let _rpcService : ?nuclide$RpcService = null
@@ -146,6 +145,7 @@ function findDuplicateAttachTargetIds(targets: Array<PythonDebuggerAttachTarget>
146145}
147146
148147export function getRemoteDebuggerCommandServiceByNuclideUri ( uri : NuclideUri ) : RemoteDebuggerCommandService {
148+ const RemoteDebuggerCommandServiceLocal = require ( "./RemoteDebuggerCommandService" )
149149 if ( _rpcService == null && ! nuclideUri . isRemote ( uri ) ) {
150150 return RemoteDebuggerCommandServiceLocal
151151 }
You can’t perform that action at this time.
0 commit comments