7 lines
118 B
Python
7 lines
118 B
Python
|
from pytest import fixture
|
||
|
|
||
|
|
||
|
@fixture
|
||
|
def translator():
|
||
|
from googletrans import Translator
|
||
|
return Translator()
|