From 61fd38d6d9170a9583c62366a2d4afa40507ce01 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sat, 22 Oct 2022 18:18:41 +0200 Subject: style: Sort imports --- src/patchWin32Updater.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/patchWin32Updater.ts') diff --git a/src/patchWin32Updater.ts b/src/patchWin32Updater.ts index 2044615..e853ebf 100644 --- a/src/patchWin32Updater.ts +++ b/src/patchWin32Updater.ts @@ -17,8 +17,8 @@ */ import { app, autoUpdater } from "electron"; -import { dirname, basename, join } from "path"; -import { readdirSync, existsSync, mkdirSync, writeFileSync } from "fs"; +import { existsSync, mkdirSync, readdirSync, writeFileSync } from "fs"; +import { basename, dirname, join } from "path"; const { setAppUserModelId } = app; -- cgit