Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerivec committed Dec 18, 2024
1 parent b479cdf commit 7cdafed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/adapter/deconz/adapter/deconzAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ export class DeconzAdapter extends Adapter {
await wait(2000);
await this.driver.changeNetworkStateRequest(PARAM.PARAM.Network.NET_CONNECTED);
await wait(2000);
}
}

public async getNetworkKey(): Promise<Buffer> {
Expand Down
6 changes: 3 additions & 3 deletions src/adapter/ember/adapter/emberAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import path from 'path';
import equals from 'fast-deep-equal/es6';

import {Adapter, TsType} from '../..';
import {Backup, UnifiedBackupStorage} from '../../../models';
import {BackupUtils, Queue, wait} from '../../../utils';
import {Backup} from '../../../models';
import {Queue, wait} from '../../../utils';
import {logger} from '../../../utils/logger';
import * as ZSpec from '../../../zspec';
import {EUI64, ExtendedPanId, NodeId, PanId} from '../../../zspec/tstypes';
Expand Down Expand Up @@ -1375,7 +1375,7 @@ export class EmberAdapter extends Adapter {
'Leave network',
);

await Wait(200); // settle down
await wait(200); // settle down
}

public async formNetwork(backup?: Backup): Promise<void> {
Expand Down
2 changes: 0 additions & 2 deletions src/adapter/ezsp/driver/driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

import {EventEmitter} from 'events';

import equals from 'fast-deep-equal/es6';

import {wait, Waitress} from '../../../utils';
import {logger} from '../../../utils/logger';
import * as ZSpec from '../../../zspec';
Expand Down

0 comments on commit 7cdafed

Please sign in to comment.