From 6f396d012ccdf1ef9020d86a7f7539b0ee9a3fb2 Mon Sep 17 00:00:00 2001 From: rosalina Date: Sun, 14 Jan 2024 02:08:23 -0500 Subject: [PATCH] run deno fmt --- s3si.ts | 10 ++++++++-- src/app.ts | 9 +++++++-- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/s3si.ts b/s3si.ts index f4d3620..fa60559 100644 --- a/s3si.ts +++ b/s3si.ts @@ -4,7 +4,13 @@ import { flags } from "./deps.ts"; const parseArgs = (args: string[]) => { const parsed = flags.parse(args, { - string: ["profilePath", "exporter", "skipMode", "listMethod", "nxapiPresenceUrl"], + string: [ + "profilePath", + "exporter", + "skipMode", + "listMethod", + "nxapiPresenceUrl", + ], boolean: ["help", "noProgress", "monitor", "withSummary"], alias: { "help": "h", @@ -15,7 +21,7 @@ const parseArgs = (args: string[]) => { "skipMode": ["s", "skip-mode"], "withSummary": "with-summary", "listMethod": "list-method", - "nxapiPresenceUrl": ["nxapi-presence"] + "nxapiPresenceUrl": ["nxapi-presence"], }, }); return parsed; diff --git a/src/app.ts b/src/app.ts index 1ea2223..4651e57 100644 --- a/src/app.ts +++ b/src/app.ts @@ -412,9 +412,14 @@ export class App { await this.exportOnce(); } if (isSplatoon3Active !== this.splatoon3PreviouslyActive) { - this.env.logger.debug("Splatoon 3 status has changed from", this.splatoon3PreviouslyActive, "to", isSplatoon3Active) + this.env.logger.debug( + "Splatoon 3 status has changed from", + this.splatoon3PreviouslyActive, + "to", + isSplatoon3Active, + ); } - this.splatoon3PreviouslyActive = isSplatoon3Active + this.splatoon3PreviouslyActive = isSplatoon3Active; } } async monitor() {