synapse/storage/_base.py:Table was unused

This commit is contained in:
Mark Haines 2015-09-22 18:14:15 +01:00
parent cc3ab0c214
commit 527d95dea0
2 changed files with 2 additions and 130 deletions

View file

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from ._base import SQLBaseStore, Table
from ._base import SQLBaseStore
from twisted.internet import defer
from synapse.api.errors import StoreError
@ -149,5 +149,5 @@ class PusherStore(SQLBaseStore):
)
class PushersTable(Table):
class PushersTable(object):
table_name = "pushers"