You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/python
|
|
class FilterModule(object):
|
|
def filters(self):
|
|
return {
|
|
'a_filter': self.a_filter,
|
|
}
|
|
|
|
def a_filter(self, a_variable):
|
|
a_new_variable = a_variable + ' CRAZY NEW FILTER'
|
|
return a_new_variable
|