6 lines
187 B
Python
6 lines
187 B
Python
"""
|
|
models package initializer. Import the currency model so it's registered
|
|
with the shared Base.metadata when the package is imported by tests.
|
|
"""
|
|
from . import currency # noqa: F401
|