Appease the linter

This commit is contained in:
Travis Ralston 2021-08-25 18:25:20 -06:00
parent 289ac34764
commit f912d9d1b4
2 changed files with 7 additions and 2 deletions

View file

@ -121,7 +121,12 @@ export class StopGapWidgetDriver extends WidgetDriver {
return new Set(iterableUnion(allowedSoFar, requested));
}
public async sendEvent(eventType: string, content: any, stateKey: string = null, targetRoomId: string = null): Promise<ISendEventDetails> {
public async sendEvent(
eventType: string,
content: any,
stateKey: string = null,
targetRoomId: string = null,
): Promise<ISendEventDetails> {
const client = MatrixClientPeg.get();
const roomId = targetRoomId || ActiveRoomObserver.activeRoomId;