From 2f80f318777f0586d147bb65fe8359cbd22b4f02 Mon Sep 17 00:00:00 2001 From: octt <6083316-octospacc@users.noreply.gitlab.com> Date: Sat, 7 Jan 2023 23:00:46 +0000 Subject: [PATCH] Update InvidiousFeedProxy.py --- InvidiousFeedProxy.py | 1 - 1 file changed, 1 deletion(-) diff --git a/InvidiousFeedProxy.py b/InvidiousFeedProxy.py index 65ad43e..58d1586 100644 --- a/InvidiousFeedProxy.py +++ b/InvidiousFeedProxy.py @@ -16,7 +16,6 @@ def IsVideoShort(Id): Info = youtube_dl.YoutubeDL().extract_info(Id, download=False) w, h = Info['width'], Info['height'] if Info['duration'] < 60 and w < h and w/h == 0.5625: # == 9:16 - print(True) return True return False