8 lines
130 B
Python
8 lines
130 B
Python
|
from os import environ
|
||
|
environ['TIRAMISU_LOCALE'] = 'en'
|
||
|
from tiramisu import StrOption
|
||
|
|
||
|
|
||
|
class CustomOption(StrOption):
|
||
|
pass
|