
In the interest of conforming to the de-facto coding standard for OpenStack projects, this patch enables all checks for flake8 and hacking, plus fixes everything reported. Also, several docstrings were edited for clarity and grammar. Change-Id: If85c4e420811b6df8eb55de1b5f07a0a8acfceff Implements: blueprint grizzly-debt
11 lines
237 B
Python
11 lines
237 B
Python
"""
|
|
In-memory reference Storage Driver for Marconi.
|
|
|
|
Useful for automated testing and for prototyping storage driver concepts.
|
|
"""
|
|
|
|
from marconi.storage.sqlite import driver
|
|
|
|
# Hoist classes into package namespace
|
|
Driver = driver.Driver
|