From ef157c9aa7a683aa8e30e0db0a7d555918272137 Mon Sep 17 00:00:00 2001 From: Hayden Young Date: Thu, 14 Oct 2021 23:04:11 +0100 Subject: [PATCH] chore: remove unused import --- cdn/src/util/S3Storage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdn/src/util/S3Storage.ts b/cdn/src/util/S3Storage.ts index 33a6ba39..8c7f7813 100644 --- a/cdn/src/util/S3Storage.ts +++ b/cdn/src/util/S3Storage.ts @@ -1,5 +1,5 @@ import { S3 } from "@aws-sdk/client-s3"; -import { Readable, Stream } from "stream"; +import { Readable } from "stream"; import { Storage } from "./Storage"; const readableToBuffer = (readable: Readable): Promise =>