From e897a595593c2d93db9751fc9f2eea1b7752e465 Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Sun, 13 Nov 2022 21:42:41 -0500 Subject: [PATCH] Revert "Add Filters.has_global" This reverts commit 0e9399af3ffe464317fc8916fc16b42500b590e7. --- pomice/player.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pomice/player.py b/pomice/player.py index 22db950..774ec89 100644 --- a/pomice/player.py +++ b/pomice/player.py @@ -33,11 +33,6 @@ class Filters: """Property which checks if any applied filters were preloaded""" return any(f for f in self._filters if f.preload == True) - @property - def has_global(self): - """Property which checks if any applied filters are global""" - return any(f for f in self._filters if f.preload == False) - @property def empty(self): """Property which checks if the filter list is empty"""