Skip to content

Commit 08aa54f

Browse files
committed
🧹 chore: run biome check
1 parent fbd4a77 commit 08aa54f

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

‎src/commands/moderation/repel.ts‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,8 @@ export const repelCommand = createCommand({
431431

432432
const timeout = await handleTimeout({
433433
target: target,
434-
durationInMilliseconds: timeoutHours !== null ? timeoutHours * HOUR : DEFAULT_TIMEOUT_DURATION_MS,
434+
durationInMilliseconds:
435+
timeoutHours !== null ? timeoutHours * HOUR : DEFAULT_TIMEOUT_DURATION_MS,
435436
});
436437

437438
const channels = getTextChannels(interaction);

‎src/util/advent-scheduler.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { promises as fs } from 'node:fs';
12
import { ChannelType, type Client } from 'discord.js';
23
import * as cron from 'node-cron';
3-
import { promises as fs } from 'node:fs';
44
import { config } from '../env.js';
55

66
const TRACKER_FILE = config.adventOfCodeTrackerPath;

0 commit comments

Comments
 (0)