summaryrefslogtreecommitdiffstats
path: root/Src/PyCatcher/src/filters.py
diff options
context:
space:
mode:
Diffstat (limited to 'Src/PyCatcher/src/filters.py')
-rw-r--r--Src/PyCatcher/src/filters.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/Src/PyCatcher/src/filters.py b/Src/PyCatcher/src/filters.py
index b574ade..07cba41 100644
--- a/Src/PyCatcher/src/filters.py
+++ b/Src/PyCatcher/src/filters.py
@@ -6,12 +6,6 @@ class Filter:
def execute(self, station_list):
raise NotImplementedError('Filter not yet implemented')
-class BandFilter(Filter):
- band = 0
-
- def execute(self, station_list):
- raise NotImplementedError('Band Filters should not be executed!')
-
class ARFCNFilter(Filter):
def execute(self, station_list):
filtered_list = []
@@ -31,6 +25,4 @@ class ProviderFilter(Filter):
filtered_list.append(station)
return filtered_list
-class BandFilter900(BandFilter):
- band = 900