9 lines
160 B
Python
9 lines
160 B
Python
|
class TrigrammeConverter:
|
||
|
regex = ".{3}"
|
||
|
|
||
|
def to_python(self, value):
|
||
|
return str(value)
|
||
|
|
||
|
def to_url(self, value):
|
||
|
return str(value)
|