- Update to v1.11.0 OBS-URL: https://build.opensuse.org/request/show/1000761 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-codemod?expand=0&rev=8
9 lines
182 B
Python
9 lines
182 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture()
|
|
def parent_module_import_enabled(mocker):
|
|
yield mocker.patch(
|
|
"django_codemod.visitors.base.REPLACE_PARENT_MODULE_IMPORTED", True
|
|
)
|