Removed unused filterOptions code

This commit is contained in:
2020-08-21 23:23:33 +02:00
parent c6b52e625f
commit c7c2c5d749
3 changed files with 4 additions and 15 deletions

View File

@@ -36,17 +36,6 @@ TIMEOUT = 4 # http timeout (in sec)
DEBUG = False
def filterOptions(options):
return options
# example of filtering code below
#allowed = ['proxy', 'clip', 'cache', 'force', 'silent', 'pro', 'debug']
#filtered = dict([(key,value) for (key,value) in options.items() if key in allowed])
#return filtered
class MorssException(Exception):
pass