zaqar/marconi/storage/__init__.py
kgriffs a556f392c5 style: Fix flake8 and hacking errors
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
2013-05-07 09:31:20 -04:00

12 lines
266 B
Python

"""Marconi Storage Drivers"""
from marconi.storage import base
from marconi.storage import exceptions # NOQA
# Hoist classes into package namespace
ClaimBase = base.ClaimBase
DriverBase = base.DriverBase
MessageBase = base.MessageBase
QueueBase = base.QueueBase