Skip to content

Commit 33dd66b

Browse files
committed
Fix indentation txn
1 parent 49f3c16 commit 33dd66b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/txn.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class Txn {
7878
q: string,
7979
vars?: { [k: string]: any }, // tslint:disable-line no-any
8080
metadata?: grpc.Metadata,
81-
options?: grpc.CallOptions
81+
options?: grpc.CallOptions,
8282
): Promise<types.Response> {
8383
if (this.finished) {
8484
this.dc.debug(
@@ -189,7 +189,7 @@ export class Txn {
189189
const mutationList = req.getMutationsList();
190190
if (this.finished) {
191191
this.dc.debug(
192-
`Do request (ERR_FINISHED):\nquery = ${req.getQuery()}\nvars = ${req.getVarsMap()}`
192+
`Do request (ERR_FINISHED):\nquery = ${req.getQuery()}\nvars = ${req.getVarsMap()}`,
193193
);
194194
this.dc.debug(
195195
`Do request (ERR_FINISHED):\nmutation = ${stringifyMessage(
@@ -203,7 +203,7 @@ export class Txn {
203203
if (this.useReadOnly) {
204204
this.dc.debug(
205205
`Do request (ERR_READ_ONLY):\nmutation = ${stringifyMessage(
206-
mutationList[0]
206+
mutationList[0],
207207
)}`,
208208
);
209209
throw ERR_READ_ONLY;
@@ -299,7 +299,7 @@ export class Txn {
299299
*/
300300
public async discard(
301301
metadata?: grpc.Metadata,
302-
options?: grpc.CallOptions
302+
options?: grpc.CallOptions,
303303
): Promise<void> {
304304
if (this.finished) {
305305
return;

0 commit comments

Comments
 (0)