From ad4d64f468ababa3f7c3deb964f95ce9f2165ed0 Mon Sep 17 00:00:00 2001 From: AnxietyisReal <96593068+AnxietyisReal@users.noreply.github.com> Date: Sun, 29 Jan 2023 09:55:11 +1100 Subject: [PATCH] Reorder the imports (test commit) --- src/commands/dev.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/dev.ts b/src/commands/dev.ts index 90c8a66..07c801e 100644 --- a/src/commands/dev.ts +++ b/src/commands/dev.ts @@ -1,9 +1,9 @@ import Discord,{SlashCommandBuilder} from 'discord.js'; -import TClient from 'src/client'; -import * as util from 'node:util'; import { Octokit } from '@octokit/rest'; import {exec} from 'node:child_process'; import { readFileSync } from 'node:fs'; +import * as util from 'node:util'; +import TClient from 'src/client'; import path from 'node:path'; const removeUsername = (text: string)=>{ let matchesLeft = true;