kpsul/kfet/converters.py

9 lines
160 B
Python
Raw Normal View History

2019-04-12 17:06:53 +02:00
class TrigrammeConverter:
regex = ".{3}"
def to_python(self, value):
return str(value)
def to_url(self, value):
return str(value)