8 lines
287 B
Python
8 lines
287 B
Python
"""Plugin-namespace import shim for the strict adapter example module.
|
|
|
|
This keeps example docs pointing at the plugin namespace while the original
|
|
implementation remains in ``Provider.example_provider`` for compatibility.
|
|
"""
|
|
|
|
from Provider.example_provider import * # noqa: F401,F403
|